Skip to content

Instantly share code, notes, and snippets.

@kratsg
Created May 11, 2022 09:46
Show Gist options
  • Save kratsg/dcce4823d4f2898dd645019468ceaa40 to your computer and use it in GitHub Desktop.
Save kratsg/dcce4823d4f2898dd645019468ceaa40 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 65,
"id": "47f3202a",
"metadata": {},
"outputs": [],
"source": [
"from rich.panel import Panel\n",
"from rich.columns import Columns\n",
"from rich.console import Console\n",
"from rich.pretty import pprint\n",
"from rich.progress import track"
]
},
{
"cell_type": "markdown",
"id": "e5f33d67",
"metadata": {},
"source": [
"# Report: Mass of Components\n",
"\n",
"This notebook is currently written partially as a proof-of-concept to understand the limitations of the ITk Production Database in the context of the [ITk SW Design needs](https://indico.cern.ch/event/1149581/contributions/4865631/). Naively, it should be relatively straightforward to be able to extract the `mass` property from each of the components in the database to first-order.\n",
"\n",
"The subtly tricky part, which does not (at least in initial discussions with Helen Hayward) need to be available or ready yet, is the drilled down version of the mass distribution."
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "19421319",
"metadata": {},
"outputs": [],
"source": [
"import itkdb\n",
"c = itkdb.Client()"
]
},
{
"cell_type": "markdown",
"id": "502e7e0b",
"metadata": {},
"source": [
"## Component Properties\n",
"\n",
"The first place to look is under component properties to see what information is there."
]
},
{
"cell_type": "code",
"execution_count": 58,
"id": "4143dea9",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────── ABC CMOS Chip Clone (ABC_CMOS_Chip_Clone) ────────────────────────╮\n",
"│ LOCAL_OBJECT_NAME,ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────── ABC CMOS Chip Clone (ABC_CMOS_Chip_Clone) ────────────────────────╮\n",
"│ LOCAL_OBJECT_NAME,ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────── ABC CMOS Chip Test (ABC_TEST) ──────────────────────────────╮\n",
"│ LOCAL_OBJECT_NAME,ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────── ABC CMOS Chip Test (ABC_TEST) ──────────────────────────────╮\n",
"│ LOCAL_OBJECT_NAME,ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────────── ABC Chip (ABC) ──────────────────────────────────────╮\n",
"│ ID,LOCAL_OBJECT_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────────── ABC Chip (ABC) ──────────────────────────────────────╮\n",
"│ ID,LOCAL_OBJECT_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────── ABC Gelpack (ABC_GELPACK) ────────────────────────────────╮\n",
"│ ABC_GELPACK_DATE,ABC_GELPACK_QTE,ABC_GELPACK_LOT,ABC_GELPACK_CIRCUIT,ABC_GELPACK_TABLE,AB │\n",
"│ C_GELPACK_COUNT │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────── ABC Gelpack (ABC_GELPACK) ────────────────────────────────╮\n",
"│ ABC_GELPACK_DATE,ABC_GELPACK_QTE,ABC_GELPACK_LOT,ABC_GELPACK_CIRCUIT,ABC_GELPACK_TABLE,AB │\n",
"│ C_GELPACK_COUNT │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────── ABC Wafer (ABC_WAFER) ──────────────────────────────────╮\n",
"│ HEIGHT,ABCWAFERNAME,ABCWAFERNUMBER,ABCWAFERLOTNAME,ABCWAFERFOUNDRYWAFERID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────── ABC Wafer (ABC_WAFER) ──────────────────────────────────╮\n",
"│ HEIGHT,ABCWAFERNAME,ABCWAFERNUMBER,ABCWAFERLOTNAME,ABCWAFERFOUNDRYWAFERID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────── ABC Wafer Clone (ABC_WAFER_CLONE) ────────────────────────────╮\n",
"│ ABC130,ABCSTAR,WAFERABCSTARV1,QWE,QWES,QWEQQ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────── ABC Wafer Clone (ABC_WAFER_CLONE) ────────────────────────────╮\n",
"│ ABC130,ABCSTAR,WAFERABCSTARV1,QWE,QWES,QWEQQ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────── ABC Wafer Test (ABC_WAFER_TEST) ─────────────────────────────╮\n",
"│ HEIGHT,ABCWAFERNAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────── ABC Wafer Test (ABC_WAFER_TEST) ─────────────────────────────╮\n",
"│ HEIGHT,ABCWAFERNAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────── ABCStar failed ASICs (20USCAB0123456) ──────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────── ABCStar failed ASICs (20USCAB0123456) ──────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────────── AMAC Chip (AMAC) ─────────────────────────────────────╮\n",
"│ NTCPB_SW_1_OHMS,SOURCE_DIR,NTCX_SW_1_OHMS,CH9_ZERO_CALIB,NTCX_R_INTERNAL,CH6_ZERO_CALIB,C │\n",
"│ H10_ZERO_CALIB,LOGIC_PASS_NUM,CH4_ZERO_CALIB,CH13_ZERO_CALIB,NTCY_SW_2_OHMS,GRADE,NTCY_SW │\n",
"│ _0_OHMS,CH7_ZERO_CALIB,NTCPB_V_ZERO,NTCPB_SW_0_OHMS,DATA_NAME,NTCPB_SW_6_OHMS,NTCY_V_ZERO │\n",
"│ ,CH0_ZERO_CALIB,CH14_ZERO_CALIB,CH12_ZERO_CALIB,NTCX_SW_6_OHMS,CH1_ZERO_CALIB,NTCPB_R_INT │\n",
"│ ERNAL,NTCY_SW_1_OHMS,SUMMARY_CSV_DIR,CH2_ZERO_CALIB,NTCPB_SW_4_OHMS,CH11_ZERO_CALIB,CH15_ │\n",
"│ ZERO_CALIB,NTCX_SW_2_OHMS,AM_SLOPE,NTCY_R_INTERNAL,CH8_ZERO_CALIB,NTCX_SW_4_OHMS,COMMUNIC │\n",
"│ ATION_GOOD,NTCX_SW_0_OHMS,OUTPUT_DIR,CH5_ZERO_CALIB,NTCY_SW_6_OHMS,CH3_ZERO_CALIB,NTCX_V_ │\n",
"│ ZERO,ANALOG_PASS_NUM,NTCY_SW_4_OHMS,NTCPB_SW_2_OHMS,VERSION,AMAC_EFUSE,DIE_INDEX,PRODUCTI │\n",
"│ ONSTAGE,WAFERNUMBER,WAFER_NAME,AMACNUMBER,X_POS,Y_POS,TRY_NUM,ANALOG_VITAL_PASS,LOGIC_VIT │\n",
"│ AL_PASS,EFUSEID,DIE_COMMENTS │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────────── AMAC Chip (AMAC) ─────────────────────────────────────╮\n",
"│ NTCPB_SW_1_OHMS,SOURCE_DIR,NTCX_SW_1_OHMS,CH9_ZERO_CALIB,NTCX_R_INTERNAL,CH6_ZERO_CALIB,C │\n",
"│ H10_ZERO_CALIB,LOGIC_PASS_NUM,CH4_ZERO_CALIB,CH13_ZERO_CALIB,NTCY_SW_2_OHMS,GRADE,NTCY_SW │\n",
"│ _0_OHMS,CH7_ZERO_CALIB,NTCPB_V_ZERO,NTCPB_SW_0_OHMS,DATA_NAME,NTCPB_SW_6_OHMS,NTCY_V_ZERO │\n",
"│ ,CH0_ZERO_CALIB,CH14_ZERO_CALIB,CH12_ZERO_CALIB,NTCX_SW_6_OHMS,CH1_ZERO_CALIB,NTCPB_R_INT │\n",
"│ ERNAL,NTCY_SW_1_OHMS,SUMMARY_CSV_DIR,CH2_ZERO_CALIB,NTCPB_SW_4_OHMS,CH11_ZERO_CALIB,CH15_ │\n",
"│ ZERO_CALIB,NTCX_SW_2_OHMS,AM_SLOPE,NTCY_R_INTERNAL,CH8_ZERO_CALIB,NTCX_SW_4_OHMS,COMMUNIC │\n",
"│ ATION_GOOD,NTCX_SW_0_OHMS,OUTPUT_DIR,CH5_ZERO_CALIB,NTCY_SW_6_OHMS,CH3_ZERO_CALIB,NTCX_V_ │\n",
"│ ZERO,ANALOG_PASS_NUM,NTCY_SW_4_OHMS,NTCPB_SW_2_OHMS,VERSION,AMAC_EFUSE,DIE_INDEX,PRODUCTI │\n",
"│ ONSTAGE,WAFERNUMBER,WAFER_NAME,AMACNUMBER,X_POS,Y_POS,TRY_NUM,ANALOG_VITAL_PASS,LOGIC_VIT │\n",
"│ AL_PASS,EFUSEID,DIE_COMMENTS │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── AMAC Gelpack (AMAC_GELPACK) ───────────────────────────────╮\n",
"│ AMAC_GELPACK_LOT,AMAC_GELPACK_DATE,AMAC_GELPACK_QTE,AMAC_GELPACK_CIRCUIT,AMAC_GELPACK_TAB │\n",
"│ LE,AMAC_GELPACK_COUNT │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── AMAC Gelpack (AMAC_GELPACK) ───────────────────────────────╮\n",
"│ AMAC_GELPACK_LOT,AMAC_GELPACK_DATE,AMAC_GELPACK_QTE,AMAC_GELPACK_CIRCUIT,AMAC_GELPACK_TAB │\n",
"│ LE,AMAC_GELPACK_COUNT │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────── AMAC Wafer (AMAC_WAFER) ─────────────────────────────────╮\n",
"│ WAFERNAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────── AMAC Wafer (AMAC_WAFER) ─────────────────────────────────╮\n",
"│ WAFERNAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────── ASIC-H Glue (Obsolete) (UV_GLUE) ─────────────────────────────╮\n",
"│ ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────── ASIC-H Glue (Obsolete) (UV_GLUE) ─────────────────────────────╮\n",
"│ ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── AndyTestComponent (ABTEST) ────────────────────────────────╮\n",
"│ ATESTTT │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── AndyTestComponent (ABTEST) ────────────────────────────────╮\n",
"│ ATESTTT │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────── Bare Module (BARE_MODULE) ────────────────────────────────╮\n",
"│ FECHIP_VERSION,SENSOR_TYPE,THICKNESS,VENDOR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────── Bare Module (BARE_MODULE) ────────────────────────────────╮\n",
"│ FECHIP_VERSION,SENSOR_TYPE,THICKNESS,VENDOR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────── Bare module gel pack (GELPACK) ──────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────── Bare module gel pack (GELPACK) ──────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────── Benchmark (BENCHMARK) ──────────────────────────────────╮\n",
"│ PROPERTY_0 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────── Benchmark (BENCHMARK) ──────────────────────────────────╮\n",
"│ PROPERTY_0 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────────── Blade (BLADE) ──────────────────────────────────────╮\n",
"│ LOCAL_NAME,MASS,POSITION_ON_WHEEL,TEMPTEST │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────────── Blade (BLADE) ──────────────────────────────────────╮\n",
"│ LOCAL_NAME,MASS,POSITION_ON_WHEEL,TEMPTEST │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────── Bruce's Test Thing (BJG_TEST_COMP) ────────────────────────────╮\n",
"│ BJG_PROP_1 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────── Bruce's Test Thing (BJG_TEST_COMP) ────────────────────────────╮\n",
"│ BJG_PROP_1 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────────── Bus Tape (BT) ──────────────────────────────────────╮\n",
"│ DESIGN,MANUFACTURER,PREPREG_ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────────── Bus Tape (BT) ──────────────────────────────────────╮\n",
"│ DESIGN,MANUFACTURER,PREPREG_ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────────── CF MAT (CF_MAT) ─────────────────────────────────────╮\n",
"│ FIBER_TYPE,CF_SOURCE_LOCATION │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────────── CF MAT (CF_MAT) ─────────────────────────────────────╮\n",
"│ FIBER_TYPE,CF_SOURCE_LOCATION │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────────── Cable (CABLE) ──────────────────────────────────────╮\n",
"│ LABEL_ID,CABLE_DIAMETER,CABLE_LENGTH,CROSS_SECTION,START_RACK,END_RACK,START_CRATE_NUMBER │\n",
"│ ,START_CHANNEL_NUMBER,END_CRATE_NUMBER,END_CHANNEL_NUMBER,STANDARD_FIELD,USER_FIELD,COLOR │\n",
"│ ,BENDING_RADIUS,DESCRIPTION,START_CONNECTOR_DESCRIPTION,END_CONNECTOR_DESCRIPTION │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────────── Cable (CABLE) ──────────────────────────────────────╮\n",
"│ LABEL_ID,CABLE_DIAMETER,CABLE_LENGTH,CROSS_SECTION,START_RACK,END_RACK,START_CRATE_NUMBER │\n",
"│ ,START_CHANNEL_NUMBER,END_CRATE_NUMBER,END_CHANNEL_NUMBER,STANDARD_FIELD,USER_FIELD,COLOR │\n",
"│ ,BENDING_RADIUS,DESCRIPTION,START_CONNECTOR_DESCRIPTION,END_CONNECTOR_DESCRIPTION │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── Cicorel Card (CICOREL_CARD) ───────────────────────────────╮\n",
"│ LOCAL_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── Cicorel Card (CICOREL_CARD) ───────────────────────────────╮\n",
"│ LOCAL_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────────── Closeout (CLOSEOUT) ───────────────────────────────────╮\n",
"│ CLOSEOUT_ID,CLOSEOUT_QUANTITY │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────────── Closeout (CLOSEOUT) ───────────────────────────────────╮\n",
"│ CLOSEOUT_ID,CLOSEOUT_QUANTITY │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── Closeout Set (CLOSEOUT_SET) ───────────────────────────────╮\n",
"│ CLOSEOUT_SET_MASS,CLOSEOUT_SET_ID,CLOSEOUT_SET_INFO │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── Closeout Set (CLOSEOUT_SET) ───────────────────────────────╮\n",
"│ CLOSEOUT_SET_MASS,CLOSEOUT_SET_ID,CLOSEOUT_SET_INFO │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────── Component Type Demo for UUN Work (uunComponentTypeDemoWork) ───────────────╮\n",
"│ FEWF,DSC,FDVDF,gmcm,jgh,DFBDF,ktk,TJRJ,gnf,rjher │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────── Component Type Demo for UUN Work (uunComponentTypeDemoWork) ───────────────╮\n",
"│ FEWF,DSC,FDVDF,gmcm,jgh,DFBDF,ktk,TJRJ,gnf,rjher │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────────── Connectors (CNCTRS) ───────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────────── Connectors (CNCTRS) ───────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── Cooling Loop Petal (COOLING_LOOP_PETAL) ─────────────────────────╮\n",
"│ DATE_OF_WELDING,WELDING_REPORT_ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── Cooling Loop Petal (COOLING_LOOP_PETAL) ─────────────────────────╮\n",
"│ DATE_OF_WELDING,WELDING_REPORT_ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── Cooling Loop Stave (COOLING_LOOP_STAVE) ─────────────────────────╮\n",
"│ Loop_Type,LOCAL_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── Cooling Loop Stave (COOLING_LOOP_STAVE) ─────────────────────────╮\n",
"│ Loop_Type,LOCAL_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── Cooling Pipe (COOLING_PIPE) ───────────────────────────────╮\n",
"│ LOCAL_NAME,TITANIUM_ID,TYPE_PROPERTY │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── Cooling Pipe (COOLING_PIPE) ───────────────────────────────╮\n",
"│ LOCAL_NAME,TITANIUM_ID,TYPE_PROPERTY │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────── Cooling Wiglet Assembly (COOLING_WIGLET_ASM) ───────────────────────╮\n",
"│ TYPE_PROPERTY,LOCAL_NAME,TITANIUMTERMINATIONID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────── Cooling Wiglet Assembly (COOLING_WIGLET_ASM) ───────────────────────╮\n",
"│ TYPE_PROPERTY,LOCAL_NAME,TITANIUMTERMINATIONID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────── Core Petal (CORE_PETAL) ─────────────────────────────────╮\n",
"│ DESY_ID,HC_ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────── Core Petal (CORE_PETAL) ─────────────────────────────────╮\n",
"│ DESY_ID,HC_ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────── Core Stave (CORE_STAVE) ─────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────── Core Stave (CORE_STAVE) ─────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── Cu/polyimide (CU_POLYIMIDE) ───────────────────────────────╮\n",
"│ ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── Cu/polyimide (CU_POLYIMIDE) ───────────────────────────────╮\n",
"│ ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────── Cylinder Dressing (CYLINDER) ───────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────── Cylinder Dressing (CYLINDER) ───────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── Cylinder Row (CYLINDER_ROW) ───────────────────────────────╮\n",
"│ ROW │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── Cylinder Row (CYLINDER_ROW) ───────────────────────────────╮\n",
"│ ROW │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────── DEMO COMPONENT (DEMO) ──────────────────────────────────╮\n",
"│ PROPERTY_WEIGHT │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────── DEMO COMPONENT (DEMO) ──────────────────────────────────╮\n",
"│ PROPERTY_WEIGHT │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────── DZANATEST (DZANAPANDA) ──────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────── DZANATEST (DZANAPANDA) ──────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────── Dario-Beta (Beta_DEAA) ──────────────────────────────────╮\n",
"│ fabrik_id │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────── Dario-Beta (Beta_DEAA) ──────────────────────────────────╮\n",
"│ fabrik_id │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────── Data Flex (DATA_FLEX) ──────────────────────────────────╮\n",
"│ FUNCTION,CONNECTION_IN,CONNECTION_OUT,PROD_SERIAL_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────── Data Flex (DATA_FLEX) ──────────────────────────────────╮\n",
"│ FUNCTION,CONNECTION_IN,CONNECTION_OUT,PROD_SERIAL_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────────── EC Ring (EC_RING) ────────────────────────────────────╮\n",
"│ NAME,PRODDATE,POSITION_IN_EC,MASS_RING,MASS_CF_RING,RATIO_EPOXY,MASS_EPOXY │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────────── EC Ring (EC_RING) ────────────────────────────────────╮\n",
"│ NAME,PRODDATE,POSITION_IN_EC,MASS_RING,MASS_CF_RING,RATIO_EPOXY,MASS_EPOXY │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────── Electrical Break (ELEC_BREAK) ──────────────────────────────╮\n",
"│ ELECTRICAL_BREAK_ID,DATE_OF_ARRIVAL,DESIGN │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────── Electrical Break (ELEC_BREAK) ──────────────────────────────╮\n",
"│ ELECTRICAL_BREAK_ID,DATE_OF_ARRIVAL,DESIGN │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────── Emily Test Component (EMILY_TEST_COMPONENT) ───────────────────────╮\n",
"│ MODULE_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────── Emily Test Component (EMILY_TEST_COMPONENT) ───────────────────────╮\n",
"│ MODULE_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────────── Endcap (ENDCAP) ─────────────────────────────────────╮\n",
"│ LOCATION │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────────── Endcap (ENDCAP) ─────────────────────────────────────╮\n",
"│ LOCATION │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────── Endcap Array Testcomponent (Riccardo) (ENDCAP-ARRAY-TESTCOMPONENT) ────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────── Endcap Array Testcomponent (Riccardo) (ENDCAP-ARRAY-TESTCOMPONENT) ────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────── Endcap Facesheet (ENDCAP_FACESHEET) ───────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────── Endcap Facesheet (ENDCAP_FACESHEET) ───────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── Endcap Wheel (ENDCAP_WHEEL) ───────────────────────────────╮\n",
"│ WHEEL_POSITION,LOCAL_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── Endcap Wheel (ENDCAP_WHEEL) ───────────────────────────────╮\n",
"│ WHEEL_POSITION,LOCAL_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────────── EoS CTC (EOS_CTC) ────────────────────────────────────╮\n",
"│ LOCALNAME,DETECTORSIDE,UNIQUEID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────────── EoS CTC (EOS_CTC) ────────────────────────────────────╮\n",
"│ LOCALNAME,DETECTORSIDE,UNIQUEID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────────── EoS Card (EOS) ──────────────────────────────────────╮\n",
"│ UNIQUEID,LOCALNAME,DETECTORSIDE,FUSED,RFID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────────── EoS Card (EOS) ──────────────────────────────────────╮\n",
"│ UNIQUEID,LOCALNAME,DETECTORSIDE,FUSED,RFID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────────── EoS PCB (EOS_PCB) ────────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────────── EoS PCB (EOS_PCB) ────────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────── EoS Panel (EOS_PANEL) ──────────────────────────────────╮\n",
"│ EOS_PANEL_PROP_NEOS,EOS_PANEL_PROP_NCTC,LOCALNAME,DETECTORSIDE,UNIQUEID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────── EoS Panel (EOS_PANEL) ──────────────────────────────────╮\n",
"│ EOS_PANEL_PROP_NEOS,EOS_PANEL_PROP_NCTC,LOCALNAME,DETECTORSIDE,UNIQUEID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────── EoS Powerboard (EOS_POWERBOARD) ─────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────── EoS Powerboard (EOS_POWERBOARD) ─────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────────── Epoxy (EPOXY) ──────────────────────────────────────╮\n",
"│ EPOXY_RATIO │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────────── Epoxy (EPOXY) ──────────────────────────────────────╮\n",
"│ EPOXY_RATIO │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────── Facesheet (FACESHEET) ──────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────── Facesheet (FACESHEET) ──────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────── Flex Sheet Test Coupon (Obsolete) (FLEX-TEST-COUPON) ───────────────────╮\n",
"│ UNIQUE-ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────── Flex Sheet Test Coupon (Obsolete) (FLEX-TEST-COUPON) ───────────────────╮\n",
"│ UNIQUE-ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────────────── Foam (FOAM) ───────────────────────────────────────╮\n",
"│ BATCH,STRIP_THICKNESS,STRIP_WIDTH │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────────────── Foam (FOAM) ───────────────────────────────────────╮\n",
"│ BATCH,STRIP_THICKNESS,STRIP_WIDTH │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────── Front-end Chip (FE_CHIP) ─────────────────────────────────╮\n",
"│ WAFERSN │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────── Front-end Chip (FE_CHIP) ─────────────────────────────────╮\n",
"│ WAFERSN │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────── Front-end Chips Wafer (FE_WAFER) ─────────────────────────────╮\n",
"│ ID,WAFER_BUMP_VENDOR,WAFER_BUMP_DATE,WAFER_BUMP_BATCH,RAW_DATA_LINK │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────── Front-end Chips Wafer (FE_WAFER) ─────────────────────────────╮\n",
"│ ID,WAFER_BUMP_VENDOR,WAFER_BUMP_DATE,WAFER_BUMP_BATCH,RAW_DATA_LINK │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────────────── GBCR (GBCR) ───────────────────────────────────────╮\n",
"│ GBCR_SERIAl │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────────────── GBCR (GBCR) ───────────────────────────────────────╮\n",
"│ GBCR_SERIAl │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────────────── Glue (GLUE) ───────────────────────────────────────╮\n",
"│ EXPIRATION_DATE,OPENING_DATE,MANUFACTURING_DATE,CONTAINER_VOLUME,CONTAINER_LABEL │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────────────── Glue (GLUE) ───────────────────────────────────────╮\n",
"│ EXPIRATION_DATE,OPENING_DATE,MANUFACTURING_DATE,CONTAINER_VOLUME,CONTAINER_LABEL │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────────── Glue (GLUE) ───────────────────────────────────────╮\n",
"│ EXPIRATION_DATE,OPENING_DATE,MANUFACTURING_DATE,CONTAINER_VOLUME,CONTAINER_LABEL,ENDCAP_R │\n",
"│ ING_GLUE_WEIGHT │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────────── Glue (GLUE) ───────────────────────────────────────╮\n",
"│ EXPIRATION_DATE,OPENING_DATE,MANUFACTURING_DATE,CONTAINER_VOLUME,CONTAINER_LABEL,ENDCAP_R │\n",
"│ ING_GLUE_WEIGHT │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────────── Graphite (GRAPHITE) ───────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────────── Graphite (GRAPHITE) ───────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────────── HCC Chip (HCC) ──────────────────────────────────────╮\n",
"│ EFUSE_HEX,EFUSE,QUALITY,PROBE_LOCATION,N_PROBE_ATTEMPTS,FINAL_PROBE_TIMESTAMP,WAFER_NAME, │\n",
"│ DIE_INDEX,WAFER_POS_X,WAFER_POS_Y,PASS_POWER,PASS_DIGITAL,PASS_ANALOG,OPTIMAL_LDO_SETTING │\n",
"│ ,OPTIMAL_LDO_FMC_VDDREG,OPTIMAL_LDO_FMC_VDDRAW,OPTIMAL_GAIN_SETTING,OPTIMAL_GAIN_SLOPE,OP │\n",
"│ TIMAL_GAIN_INTERCEPT,OPTIMAL_GAIN_REDUCEDCHI2,MAX_LDO_SETTING,MAX_LDO_FMC_VDDREG │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────────── HCC Chip (HCC) ──────────────────────────────────────╮\n",
"│ EFUSE_HEX,EFUSE,QUALITY,PROBE_LOCATION,N_PROBE_ATTEMPTS,FINAL_PROBE_TIMESTAMP,WAFER_NAME, │\n",
"│ DIE_INDEX,WAFER_POS_X,WAFER_POS_Y,PASS_POWER,PASS_DIGITAL,PASS_ANALOG,OPTIMAL_LDO_SETTING │\n",
"│ ,OPTIMAL_LDO_FMC_VDDREG,OPTIMAL_LDO_FMC_VDDRAW,OPTIMAL_GAIN_SETTING,OPTIMAL_GAIN_SLOPE,OP │\n",
"│ TIMAL_GAIN_INTERCEPT,OPTIMAL_GAIN_REDUCEDCHI2,MAX_LDO_SETTING,MAX_LDO_FMC_VDDREG │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────── HCC Gelpack (HCC_GELPACK) ────────────────────────────────╮\n",
"│ HCC_GELPACK_LOT,HCC_GELPACK_DATE,HCC_GELPACK_QTE,HCC_GELPACK_CIRCUIT,HCC_GELPACK_TABLE,HC │\n",
"│ C_GELPACK_COUNT │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────── HCC Gelpack (HCC_GELPACK) ────────────────────────────────╮\n",
"│ HCC_GELPACK_LOT,HCC_GELPACK_DATE,HCC_GELPACK_QTE,HCC_GELPACK_CIRCUIT,HCC_GELPACK_TABLE,HC │\n",
"│ C_GELPACK_COUNT │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────── HCC Wafer (HCC_WAFER) ──────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────── HCC Wafer (HCC_WAFER) ──────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── HV-Tab Sheet (HV_TAB_SHEET) ───────────────────────────────╮\n",
"│ LABEL,NUMMBER_TABS_FOR_MODULES,NUMBER_TABS_FOR_OTHER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── HV-Tab Sheet (HV_TAB_SHEET) ───────────────────────────────╮\n",
"│ LABEL,NUMMBER_TABS_FOR_MODULES,NUMBER_TABS_FOR_OTHER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────────── HVmux (HVMUX) ──────────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────────── HVmux (HVMUX) ──────────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────── Honeycomb (HONEYCOMB) ──────────────────────────────────╮\n",
"│ PRODUCT_CODE,BLOCK_SIZE,ID,MANUFACTURING_DATE,DENSITY,NUMBER_OF_SHEETS,HONEYCOMB_MANUFACT │\n",
"│ URER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────── Honeycomb (HONEYCOMB) ──────────────────────────────────╮\n",
"│ PRODUCT_CODE,BLOCK_SIZE,ID,MANUFACTURING_DATE,DENSITY,NUMBER_OF_SHEETS,HONEYCOMB_MANUFACT │\n",
"│ URER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────── Honeycomb Set (HONEYCOMBSET) ───────────────────────────────╮\n",
"│ HONEYCOMB_SET_MASS,HONEYCOMB_SET_ID,HONEYCOMB_SET_INFO │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────── Honeycomb Set (HONEYCOMBSET) ───────────────────────────────╮\n",
"│ HONEYCOMB_SET_MASS,HONEYCOMB_SET_ID,HONEYCOMB_SET_INFO │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────── Hyb-demo1HH (Hyb-demo1HH) ────────────────────────────────╮\n",
"│ hyb-demo1,hyb-demo2 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────── Hyb-demo1HH (Hyb-demo1HH) ────────────────────────────────╮\n",
"│ hyb-demo1,hyb-demo2 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── Hybrid (Obsolete) (HYBRID) ────────────────────────────────╮\n",
"│ RFID,LOCALNAME,MANUFACTURER-NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── Hybrid (Obsolete) (HYBRID) ────────────────────────────────╮\n",
"│ RFID,LOCALNAME,MANUFACTURER-NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────── Hybrid Flex Array (Obsolete) (HYBRID-FLEX-ARRAY) ─────────────────────╮\n",
"│ UNIQUE-ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────── Hybrid Flex Array (Obsolete) (HYBRID-FLEX-ARRAY) ─────────────────────╮\n",
"│ UNIQUE-ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────── Hybrid Flex SHEET (Obsolete) (HYBRID_FLEX_SHEET) ─────────────────────╮\n",
"│ ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────── Hybrid Flex SHEET (Obsolete) (HYBRID_FLEX_SHEET) ─────────────────────╮\n",
"│ ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────── Hybrid Panel June (HYBRID_PANEL_JUNE) ──────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────── Hybrid Panel June (HYBRID_PANEL_JUNE) ──────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── Hybrid Testpanel (Obsolete) (TESTPANEL) ─────────────────────────╮\n",
"│ CYCLES_USED,LOCALNAME,BATCH,NUMBER,RFID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── Hybrid Testpanel (Obsolete) (TESTPANEL) ─────────────────────────╮\n",
"│ CYCLES_USED,LOCALNAME,BATCH,NUMBER,RFID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────── IHEP Test ABC130 (IHEP_Test_ABC130) ───────────────────────────╮\n",
"│ IHEP_Test_ABC130 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────── IHEP Test ABC130 (IHEP_Test_ABC130) ───────────────────────────╮\n",
"│ IHEP_Test_ABC130 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────── IHEP Test CHESS2 (IHEP_Test_CHESS2) ───────────────────────────╮\n",
"│ IHEP_Test_CHESS2 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────── IHEP Test CHESS2 (IHEP_Test_CHESS2) ───────────────────────────╮\n",
"│ IHEP_Test_CHESS2 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────── IHEP Test CHESS2 DauhgterCard (IHEP_Test_CHESS2_DaughterCard) ──────────────╮\n",
"│ IHEP_Test_CHESS2_DaughterCard │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────── IHEP Test CHESS2 DauhgterCard (IHEP_Test_CHESS2_DaughterCard) ──────────────╮\n",
"│ IHEP_Test_CHESS2_DaughterCard │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────── IHEP Test HCC130 (IHEP_Test_HCC130) ───────────────────────────╮\n",
"│ IHEP_Test_HCC130 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────── IHEP Test HCC130 (IHEP_Test_HCC130) ───────────────────────────╮\n",
"│ IHEP_Test_HCC130 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────── IHEP Test Module (IHEP_Test_Module) ───────────────────────────╮\n",
"│ IHEP_Test_Module │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────── IHEP Test Module (IHEP_Test_Module) ───────────────────────────╮\n",
"│ IHEP_Test_Module │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────── IS Barrel (IS_BARREL) ──────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────── IS Barrel (IS_BARREL) ──────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────── IS Barrel Half Assembly (IS_BA_HALF) ───────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────── IS Barrel Half Assembly (IS_BA_HALF) ───────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────── IS Barrel Half Shell (IS_BA_HALF_RAW) ──────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────── IS Barrel Half Shell (IS_BA_HALF_RAW) ──────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────── IS Barrel Stave Structure (IS_BA_STAVE_RAW) ───────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────── IS Barrel Stave Structure (IS_BA_STAVE_RAW) ───────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── IS Capillary (IS_CAPILLARY) ───────────────────────────────╮\n",
"│ IS_Capillary_ID,IS_Capillary_Length │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── IS Capillary (IS_CAPILLARY) ───────────────────────────────╮\n",
"│ IS_Capillary_ID,IS_Capillary_Length │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── IS Cooling Tube (COOL_TUBE) ───────────────────────────────╮\n",
"│ COOL_Purpose │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── IS Cooling Tube (COOL_TUBE) ───────────────────────────────╮\n",
"│ COOL_Purpose │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────── IS Cooling Tube Assembly (STAVE_COOLING_ASM) ───────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────── IS Cooling Tube Assembly (STAVE_COOLING_ASM) ───────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────── IS End Tube (END_TUBE) ──────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────── IS End Tube (END_TUBE) ──────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────── IS Endcap (IS_ENDCAP) ──────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────── IS Endcap (IS_ENDCAP) ──────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────── IS Endcap Cooling Manifold (IS_EC_CM) ──────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────── IS Endcap Cooling Manifold (IS_EC_CM) ──────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── IS Endcap Half (IS_EC_HALF) ───────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── IS Endcap Half (IS_EC_HALF) ───────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── IS Endcap Quarter Shell (IS_EC_QS_RAW) ──────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── IS Endcap Quarter Shell (IS_EC_QS_RAW) ──────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────── IS Endcap Quarter Shell Assembly (IS_EC_QS) ───────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────── IS Endcap Quarter Shell Assembly (IS_EC_QS) ───────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────── IS Endcap Ring Local Support Structure (IS_EC_RING_RAW) ─────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────── IS Endcap Ring Local Support Structure (IS_EC_RING_RAW) ─────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── IS Evaporator (EVAPORATOR) ────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── IS Evaporator (EVAPORATOR) ────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────── IS Loaded Local Support (IS_LOADED_LOCAL_SUPPORT) ────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────── IS Loaded Local Support (IS_LOADED_LOCAL_SUPPORT) ────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────────── Isabel TEST (TEST1) ───────────────────────────────────╮\n",
"│ RFID,LOCALNAME,MANUFACTURER-NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────────── Isabel TEST (TEST1) ───────────────────────────────────╮\n",
"│ RFID,LOCALNAME,MANUFACTURER-NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────── Isabel Test component (TEST) ──────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────── Isabel Test component (TEST) ──────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────── JJ ABC Chip Test Clone (JJ_ABC_CHIP_TEST_CLONE) ─────────────────────╮\n",
"│ LOCAL_OBJECT_NAME,ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────── JJ ABC Chip Test Clone (JJ_ABC_CHIP_TEST_CLONE) ─────────────────────╮\n",
"│ LOCAL_OBJECT_NAME,ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────── JJ HCC Chip Test Clone (JJ_HCC_CHIP_TEST_CLONE) ─────────────────────╮\n",
"│ EFUSE_HEX,EFUSE,QUALITY,PROBE_LOCATION,N_PROBE_ATTEMPTS,FINAL_PROBE_TIMESTAMP,WAFER_NAME, │\n",
"│ DIE_INDEX,WAFER_POS_X,WAFER_POS_Y,PASS_POWER,PASS_DIGITAL,PASS_ANALOG,OPTIMAL_LDO_SETTING │\n",
"│ ,OPTIMAL_LDO_FMC_VDDREG,OPTIMAL_LDO_FMC_VDDRAW,OPTIMAL_GAIN_SETTING,OPTIMAL_GAIN_SLOPE,OP │\n",
"│ TIMAL_GAIN_INTERCEPT,OPTIMAL_GAIN_REDUCEDCHI2,MAX_LDO_SETTING,MAX_LDO_FMC_VDDREG │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────── JJ HCC Chip Test Clone (JJ_HCC_CHIP_TEST_CLONE) ─────────────────────╮\n",
"│ EFUSE_HEX,EFUSE,QUALITY,PROBE_LOCATION,N_PROBE_ATTEMPTS,FINAL_PROBE_TIMESTAMP,WAFER_NAME, │\n",
"│ DIE_INDEX,WAFER_POS_X,WAFER_POS_Y,PASS_POWER,PASS_DIGITAL,PASS_ANALOG,OPTIMAL_LDO_SETTING │\n",
"│ ,OPTIMAL_LDO_FMC_VDDREG,OPTIMAL_LDO_FMC_VDDRAW,OPTIMAL_GAIN_SETTING,OPTIMAL_GAIN_SLOPE,OP │\n",
"│ TIMAL_GAIN_INTERCEPT,OPTIMAL_GAIN_REDUCEDCHI2,MAX_LDO_SETTING,MAX_LDO_FMC_VDDREG │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────── JJ Hybrid Assembly - Testing (JJ_HYBRID_ASSEMBLY) ────────────────────╮\n",
"│ ASSEMBLY_JIG,GLUE_SYRINGE,LOCAL_NAME,ASSEMBLY_CHIPTRAY,ASSEMBLY_PICKUP_TOOL,HYBRID_NAME,P │\n",
"│ ICK_AND_PLACE_MACHINE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────── JJ Hybrid Assembly - Testing (JJ_HYBRID_ASSEMBLY) ────────────────────╮\n",
"│ ASSEMBLY_JIG,GLUE_SYRINGE,LOCAL_NAME,ASSEMBLY_CHIPTRAY,ASSEMBLY_PICKUP_TOOL,HYBRID_NAME,P │\n",
"│ ICK_AND_PLACE_MACHINE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────── JJ Test Star Hybrid Assembly (JJ_TEST_STAR_HYBRID_ASSEMBLY) ───────────────╮\n",
"│ ASSEMBLY_JIG,HYBRID_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────── JJ Test Star Hybrid Assembly (JJ_TEST_STAR_HYBRID_ASSEMBLY) ───────────────╮\n",
"│ ASSEMBLY_JIG,HYBRID_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────── Jiayi's test component (JIAYI-TEST-COMP) ─────────────────────────╮\n",
"│ JIAYI-TEST-ALTERNATIEID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────── Jiayi's test component (JIAYI-TEST-COMP) ─────────────────────────╮\n",
"│ JIAYI-TEST-ALTERNATIEID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── KK's Test Assembly 1 (KKTESTASSEMBLY1) ──────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── KK's Test Assembly 1 (KKTESTASSEMBLY1) ──────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────── KK's Test Item 1 (KKTESTITEM1) ──────────────────────────────╮\n",
"│ COOL_STRING,BORING_STRING_0,BORING_STRING_1,BORING_STRING_2,BORING_STRING_3,BORING_STRING │\n",
"│ _4,BORING_STRING_5,BORING_STRING_6,BORING_STRING_7,BORING_STRING_8 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────── KK's Test Item 1 (KKTESTITEM1) ──────────────────────────────╮\n",
"│ COOL_STRING,BORING_STRING_0,BORING_STRING_1,BORING_STRING_2,BORING_STRING_3,BORING_STRING │\n",
"│ _4,BORING_STRING_5,BORING_STRING_6,BORING_STRING_7,BORING_STRING_8 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────── KK's Test Item 2 (KKTESTITEM2) ──────────────────────────────╮\n",
"│ COOL_STRING2,COOL_STRING1 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────── KK's Test Item 2 (KKTESTITEM2) ──────────────────────────────╮\n",
"│ COOL_STRING2,COOL_STRING1 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────── KK's Test Panel 1 (KKTESTPANEL1) ─────────────────────────────╮\n",
"│ SUPER_COOL_STRING │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────── KK's Test Panel 1 (KKTESTPANEL1) ─────────────────────────────╮\n",
"│ SUPER_COOL_STRING │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────── Karo's Test Component 1 (KAROSTESTCOMPONENT1) ──────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────── Karo's Test Component 1 (KAROSTESTCOMPONENT1) ──────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── KarosTestDummyChip (KarosTestDummyChip) ─────────────────────────╮\n",
"│ KarosTestDummyChipWeight │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── KarosTestDummyChip (KarosTestDummyChip) ─────────────────────────╮\n",
"│ KarosTestDummyChipWeight │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────────────── LUCY (XZ) ────────────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────────────── LUCY (XZ) ────────────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────── Locking Point Nuts Set (LOCKINGPOINT_NUTS_SET) ──────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────── Locking Point Nuts Set (LOCKINGPOINT_NUTS_SET) ──────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────── Locking point set (LOCKINGPOINT_SET) ───────────────────────────╮\n",
"│ LOCKINGPOINT_MATERIAL,LOCKINGPOINT_MANUFACTURER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────── Locking point set (LOCKINGPOINT_SET) ───────────────────────────╮\n",
"│ LOCKINGPOINT_MATERIAL,LOCKINGPOINT_MANUFACTURER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────── Luise's Test Reusable (TEST_REUSABLE) ──────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────── Luise's Test Reusable (TEST_REUSABLE) ──────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────── Luise's test material (LUISETESTMATERIAL) ────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────── Luise's test material (LUISETESTMATERIAL) ────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────── MOPS Chip (MOPS_CHIP) ──────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────── MOPS Chip (MOPS_CHIP) ──────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────── Matt's Test Component A (MATTS_TEST_COMPONENT_A) ─────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────── Matt's Test Component A (MATTS_TEST_COMPONENT_A) ─────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────── Matt's Test Component B (MATTS_TEST_COMPONENT_B) ─────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────── Matt's Test Component B (MATTS_TEST_COMPONENT_B) ─────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────── Michael HCC Failed ASICs (Michael_HCC_Failed_ASICs) ───────────────────╮\n",
"│ Michael_HCC_failed_ASICs_weight,Michael_HCC_failed_ASICs_wafer,Michael_HCC_failed_ASICs_d │\n",
"│ ie │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────── Michael HCC Failed ASICs (Michael_HCC_Failed_ASICs) ───────────────────╮\n",
"│ Michael_HCC_failed_ASICs_weight,Michael_HCC_failed_ASICs_wafer,Michael_HCC_failed_ASICs_d │\n",
"│ ie │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── Michael HCC Gelpak (Michael_HCC_Gelpak) ─────────────────────────╮\n",
"│ Michael_HCC_Gelpak_quantity,Michael_HCC_Gelpak_name │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── Michael HCC Gelpak (Michael_HCC_Gelpak) ─────────────────────────╮\n",
"│ Michael_HCC_Gelpak_quantity,Michael_HCC_Gelpak_name │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────── Michael's R3 HV Tab Jig Test (20USERT0345) ────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────── Michael's R3 HV Tab Jig Test (20USERT0345) ────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────── Mixed Wafer (MWAFER) ───────────────────────────────────╮\n",
"│ MIXEDWAFERNAME,MIXEDWAFERNUMBER,MIXEDWAFERLOT,MIXEDFOUNDRYWAFERID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────── Mixed Wafer (MWAFER) ───────────────────────────────────╮\n",
"│ MIXEDWAFERNAME,MIXEDWAFERNUMBER,MIXEDWAFERLOT,MIXEDFOUNDRYWAFERID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────────── Module (MODULE) ─────────────────────────────────────╮\n",
"│ LOCALNAME,MODULE_NAME,HV_TAB_ASSEMBLY_JIG │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────────── Module (MODULE) ─────────────────────────────────────╮\n",
"│ LOCALNAME,MODULE_NAME,HV_TAB_ASSEMBLY_JIG │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────────── Module (MODULE) ─────────────────────────────────────╮\n",
"│ ORIENTATION,FECHIP_VERSION,RD53A_PULL-UP_RESISTOR1,RD53A_PULL-UP_RESISTOR2,RD53A_PULL-UP_ │\n",
"│ RESISTOR3,RD53A_PULL-UP_RESISTOR4,IREFTRIM_FE1,IREFTRIM_FE2,IREFTRIM_FE3,IREFTRIM_FE4,THI │\n",
"│ CKNESS,ROOF,FETHICKNESS │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────────── Module (MODULE) ─────────────────────────────────────╮\n",
"│ ORIENTATION,FECHIP_VERSION,RD53A_PULL-UP_RESISTOR1,RD53A_PULL-UP_RESISTOR2,RD53A_PULL-UP_ │\n",
"│ RESISTOR3,RD53A_PULL-UP_RESISTOR4,IREFTRIM_FE1,IREFTRIM_FE2,IREFTRIM_FE3,IREFTRIM_FE4,THI │\n",
"│ CKNESS,ROOF,FETHICKNESS │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── Module Frame (MODULE_FRAME) ───────────────────────────────╮\n",
"│ FRAME_NAME,LOCAL_NAME,RFID,NO_CYCLES │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── Module Frame (MODULE_FRAME) ───────────────────────────────╮\n",
"│ FRAME_NAME,LOCAL_NAME,RFID,NO_CYCLES │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────────── Module PCB (PCB) ─────────────────────────────────────╮\n",
"│ FECHIP_VERSION,VERSION_OF_HYBRID_DESIGN,DESIGN_COPPER_THICKNESS,PANEL_MANUFACTURER,PANEL_ │\n",
"│ MANUFACTURER_BATCH_NUMBER,PANEL_NUMBER,DATE_PANEL_MANUFACTURED,SMD_POPULATION_VENDOR,SMD_ │\n",
"│ POPULATION_BATCH_NUMBER,DATE_SMDS_LOADED,SMD_NTC_MANUFACTURER_SERIAL_NUMBER,SMD_NTC_NOMIN │\n",
"│ AL_VALUE,SMD_NTC_TOLERANCE,SMD_HV_CAP_MANUFACTURER_SERIAL_NUMBER,SMD_HV_CAP_NOMINAL_VALUE │\n",
"│ ,SMD_HV_CAP_TOLERANCE,SMD_SLDO_RESISTOR_R111_MANUFACTURER_SERIAL_NUMBER,SMD_SLDO_RESISTOR │\n",
"│ _R111_NOMINAL_VALUE,SMD_SLDO_RESISTOR_R111_TOLERANCE,SMD_SLDO_RESISTOR_R112_MANUFACTURER_ │\n",
"│ SERIAL_NUMBER,SMD_SLDO_RESISTOR_R112_NOMINAL_VALUE,SMD_SLDO_RESISTOR_R112_TOLERANCE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────────── Module PCB (PCB) ─────────────────────────────────────╮\n",
"│ FECHIP_VERSION,VERSION_OF_HYBRID_DESIGN,DESIGN_COPPER_THICKNESS,PANEL_MANUFACTURER,PANEL_ │\n",
"│ MANUFACTURER_BATCH_NUMBER,PANEL_NUMBER,DATE_PANEL_MANUFACTURED,SMD_POPULATION_VENDOR,SMD_ │\n",
"│ POPULATION_BATCH_NUMBER,DATE_SMDS_LOADED,SMD_NTC_MANUFACTURER_SERIAL_NUMBER,SMD_NTC_NOMIN │\n",
"│ AL_VALUE,SMD_NTC_TOLERANCE,SMD_HV_CAP_MANUFACTURER_SERIAL_NUMBER,SMD_HV_CAP_NOMINAL_VALUE │\n",
"│ ,SMD_HV_CAP_TOLERANCE,SMD_SLDO_RESISTOR_R111_MANUFACTURER_SERIAL_NUMBER,SMD_SLDO_RESISTOR │\n",
"│ _R111_NOMINAL_VALUE,SMD_SLDO_RESISTOR_R111_TOLERANCE,SMD_SLDO_RESISTOR_R112_MANUFACTURER_ │\n",
"│ SERIAL_NUMBER,SMD_SLDO_RESISTOR_R112_NOMINAL_VALUE,SMD_SLDO_RESISTOR_R112_TOLERANCE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── Module PCB test coupon (PCB_TESTCOUPON) ─────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── Module PCB test coupon (PCB_TESTCOUPON) ─────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────── Module carrier (MODULE_CARRIER) ─────────────────────────────╮\n",
"│ MODULE_CARRIER_NTIMES,MODULE_CARRIER_TYPE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────── Module carrier (MODULE_CARRIER) ─────────────────────────────╮\n",
"│ MODULE_CARRIER_NTIMES,MODULE_CARRIER_TYPE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────── NTC Thermistor (NTC) ───────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────── NTC Thermistor (NTC) ───────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────── OB Bare Cell Transport Box (OB_BARE_CELL_TRANSPORT_BOX) ─────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────── OB Bare Cell Transport Box (OB_BARE_CELL_TRANSPORT_BOX) ─────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────── OB Bare LS Adhesive (OB_BARE_LS_ADHESIVE) ────────────────────────╮\n",
"│ Delivery_Date,Site_Name,Quantity,Supplier_Reference,Manufacturer_Production_Date,Expirati │\n",
"│ on_Date,Opening_Date,Empty_Date │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────── OB Bare LS Adhesive (OB_BARE_LS_ADHESIVE) ────────────────────────╮\n",
"│ Delivery_Date,Site_Name,Quantity,Supplier_Reference,Manufacturer_Production_Date,Expirati │\n",
"│ on_Date,Opening_Date,Empty_Date │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────── OB Bare Module cell (OB_BARE_MODULE_CELL) ────────────────────────╮\n",
"│ PART_NUMBER,Assembly_Date,Operator_Name,Assembly_Tool_Identified,PACKAGE_DATE,Assembly_To │\n",
"│ ol_Position │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────── OB Bare Module cell (OB_BARE_MODULE_CELL) ────────────────────────╮\n",
"│ PART_NUMBER,Assembly_Date,Operator_Name,Assembly_Tool_Identified,PACKAGE_DATE,Assembly_To │\n",
"│ ol_Position │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────── OB Base Block (OB_BASE_BLOCK) ──────────────────────────────╮\n",
"│ PART_NUMBER,Machining_Date │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────── OB Base Block (OB_BASE_BLOCK) ──────────────────────────────╮\n",
"│ PART_NUMBER,Machining_Date │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────── OB Cooling Block (OB_COOLING_BLOCK) ───────────────────────────╮\n",
"│ PART_NUMBER,Machining_Date │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────── OB Cooling Block (OB_COOLING_BLOCK) ───────────────────────────╮\n",
"│ PART_NUMBER,Machining_Date │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────── OB Cooling Pipe for IHR (OB_Cooling_pipe_IHR) ──────────────────────╮\n",
"│ PART_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────── OB Cooling Pipe for IHR (OB_Cooling_pipe_IHR) ──────────────────────╮\n",
"│ PART_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────── OB Cooling Pipe for Longeron (OB_COOLING_PIPE_LONGERON) ─────────────────╮\n",
"│ PART-NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────── OB Cooling Pipe for Longeron (OB_COOLING_PIPE_LONGERON) ─────────────────╮\n",
"│ PART-NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────── OB End-of-Longeron Bracket (OB_END_OF_LONGERON_BRACKET) ─────────────────╮\n",
"│ PART_NUMBER,Manufacturing_Date,Operator_Name,Mould_Identifier │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────── OB End-of-Longeron Bracket (OB_END_OF_LONGERON_BRACKET) ─────────────────╮\n",
"│ PART_NUMBER,Manufacturing_Date,Operator_Name,Mould_Identifier │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────── OB End-of-Longeron Support (OB_END_OF_LONGERON_SUPPORT) ─────────────────╮\n",
"│ PART_NUMBER,SHIFTER_NAME,MANUFACTURED_DATETIME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────── OB End-of-Longeron Support (OB_END_OF_LONGERON_SUPPORT) ─────────────────╮\n",
"│ PART_NUMBER,SHIFTER_NAME,MANUFACTURED_DATETIME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────── OB Functional IHR (OB_FUNCTIONAL_IHR) ──────────────────────────╮\n",
"│ PART_NUMBER,Assembly_Date,Operator_Name │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────── OB Functional IHR (OB_FUNCTIONAL_IHR) ──────────────────────────╮\n",
"│ PART_NUMBER,Assembly_Date,Operator_Name │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────── OB Functional Longeron (OB_FUNCTIONAL_LONGERON) ─────────────────────╮\n",
"│ PART_NUMBER,Assembly_Date,Operator_Name │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────── OB Functional Longeron (OB_FUNCTIONAL_LONGERON) ─────────────────────╮\n",
"│ PART_NUMBER,Assembly_Date,Operator_Name │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────── OB Functional Pipe for Longeron (OB_FUNCTIONAL_PIPE_LONGERON) ──────────────╮\n",
"│ PART_NUMBER,Assembly_Date,Operator_Name │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────── OB Functional Pipe for Longeron (OB_FUNCTIONAL_PIPE_LONGERON) ──────────────╮\n",
"│ PART_NUMBER,Assembly_Date,Operator_Name │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────── OB Gusset (OB_GUSSET) ──────────────────────────────────╮\n",
"│ PART_NUMBER,Manufacturing_Date,Operator_Name,Mould_Identifier │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────── OB Gusset (OB_GUSSET) ──────────────────────────────────╮\n",
"│ PART_NUMBER,Manufacturing_Date,Operator_Name,Mould_Identifier │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── OB Half-Ring Shell (OB_HALF_RING_SHELL) ─────────────────────────╮\n",
"│ PART_NUMBER,Manufacturing_Date,Operator_Name,Mould_Identifier │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── OB Half-Ring Shell (OB_HALF_RING_SHELL) ─────────────────────────╮\n",
"│ PART_NUMBER,Manufacturing_Date,Operator_Name,Mould_Identifier │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────── OB IHR Pipe strain relief (OB_IHR_PIPE_STRAIN_RELIEF) ──────────────────╮\n",
"│ Manufacturing_Date,Mould_Identifier,Part_Number │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────── OB IHR Pipe strain relief (OB_IHR_PIPE_STRAIN_RELIEF) ──────────────────╮\n",
"│ Manufacturing_Date,Mould_Identifier,Part_Number │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────── OB Inclined Half-Ring HF (OB_INCLINED_HALF_RING_HF) ───────────────────╮\n",
"│ SHIFTER_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────── OB Inclined Half-Ring HF (OB_INCLINED_HALF_RING_HF) ───────────────────╮\n",
"│ SHIFTER_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────── OB Inserts (OB_INSERTS) ─────────────────────────────────╮\n",
"│ BATCH_NUMBER,SHIFTER_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────── OB Inserts (OB_INSERTS) ─────────────────────────────────╮\n",
"│ BATCH_NUMBER,SHIFTER_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────── OB Loaded Inclined Half-Ring (OB_LOADED_INCLINED_HALF_RING) ───────────────╮\n",
"│ PART_NUMBER,SHIFTER_NAME,MANUFACTURED_DATETIME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────── OB Loaded Inclined Half-Ring (OB_LOADED_INCLINED_HALF_RING) ───────────────╮\n",
"│ PART_NUMBER,SHIFTER_NAME,MANUFACTURED_DATETIME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── OB Loaded Longeron (OB_LOADED_LONGERON) ─────────────────────────╮\n",
"│ PART_NUMBER,SHIFTER_NAME,MANUFACTURED_DATETIME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── OB Loaded Longeron (OB_LOADED_LONGERON) ─────────────────────────╮\n",
"│ PART_NUMBER,SHIFTER_NAME,MANUFACTURED_DATETIME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────── OB Loaded Module Cell (OB_LOADED_MODULE_CELL) ──────────────────────╮\n",
"│ PART_NUMBER,SHIFTER_NAME,MANUFACTURED_DATETIME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────── OB Loaded Module Cell (OB_LOADED_MODULE_CELL) ──────────────────────╮\n",
"│ PART_NUMBER,SHIFTER_NAME,MANUFACTURED_DATETIME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────── OB Loading Adhesive (OB_LOADING_ADHESIVE) ────────────────────────╮\n",
"│ BATCH_NUMBER,SHIFTER_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────── OB Loading Adhesive (OB_LOADING_ADHESIVE) ────────────────────────╮\n",
"│ BATCH_NUMBER,SHIFTER_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────── OB Longeron HF (OB_LONGERON_HF) ─────────────────────────────╮\n",
"│ SHIFTER_NAME,PART_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────── OB Longeron HF (OB_LONGERON_HF) ─────────────────────────────╮\n",
"│ SHIFTER_NAME,PART_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────── OB Longeron Inserts (OB_Longeron_Inserts) ────────────────────────╮\n",
"│ Delivery_Date,NUMBER_OF_INSERTS,BATCH_NUMBER,Supplier_Reference,Material_Certificate │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────── OB Longeron Inserts (OB_Longeron_Inserts) ────────────────────────╮\n",
"│ Delivery_Date,NUMBER_OF_INSERTS,BATCH_NUMBER,Supplier_Reference,Material_Certificate │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────── OB PG Tile (OB_PG_TILE) ─────────────────────────────────╮\n",
"│ PART_NUMBER,Delivery_Date,Supplier_Batch_Reference,Package_Date │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────── OB PG Tile (OB_PG_TILE) ─────────────────────────────────╮\n",
"│ PART_NUMBER,Delivery_Date,Supplier_Batch_Reference,Package_Date │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────── OB PP0 Flat Longeron (PP0_FLAT) ─────────────────────────────╮\n",
"│ PP0_FLAT_MANUFACTURER,PPO_FLAT_OPERATOR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────── OB PP0 Flat Longeron (PP0_FLAT) ─────────────────────────────╮\n",
"│ PP0_FLAT_MANUFACTURER,PPO_FLAT_OPERATOR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────── OB PP0 Inclined IHR (PP0IHR) ───────────────────────────────╮\n",
"│ Manufacturer,ShifterName │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────── OB PP0 Inclined IHR (PP0IHR) ───────────────────────────────╮\n",
"│ Manufacturer,ShifterName │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────── OB Pigtail (OB_PIGTAIL) ─────────────────────────────────╮\n",
"│ SHIFTER_NAME,MANUFACTURED_DATETIME,PART_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────── OB Pigtail (OB_PIGTAIL) ─────────────────────────────────╮\n",
"│ SHIFTER_NAME,MANUFACTURED_DATETIME,PART_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────── OB Pipe Support (OB_PIPE_SUPPORT) ────────────────────────────╮\n",
"│ PART_NUMBER,Manufacturing_Date,Operator_Name,Mould_Identifier │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────── OB Pipe Support (OB_PIPE_SUPPORT) ────────────────────────────╮\n",
"│ PART_NUMBER,Manufacturing_Date,Operator_Name,Mould_Identifier │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────── OB Raw Material Al-G (OB_RAW_MATERIAL_AL_G) ───────────────────────╮\n",
"│ BATCH_NUMBER,DELIVERY_DATE,NUMBERS_OF_RODS,SUPPLIER_REFERENCE,MATERIAL_CERTIFICATE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────── OB Raw Material Al-G (OB_RAW_MATERIAL_AL_G) ───────────────────────╮\n",
"│ BATCH_NUMBER,DELIVERY_DATE,NUMBERS_OF_RODS,SUPPLIER_REFERENCE,MATERIAL_CERTIFICATE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────── OB Raw Material CFRP (OB_RAW_MATERIAL_CFRP) ───────────────────────╮\n",
"│ Delivery_Date,Quantity,Supplier_Reference,Manufacturer_Production_Date,Expiration_Date,Op │\n",
"│ ening_Date,EMPTY_DATE,Material_Certificate │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────── OB Raw Material CFRP (OB_RAW_MATERIAL_CFRP) ───────────────────────╮\n",
"│ Delivery_Date,Quantity,Supplier_Reference,Manufacturer_Production_Date,Expiration_Date,Op │\n",
"│ ening_Date,EMPTY_DATE,Material_Certificate │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────── OB Termination Sleeves (OB_Termination_Sleeves) ─────────────────────╮\n",
"│ Delivery_Date,NUMBER_OF_SLEEVES,Batch_number,Supplier_Reference,Material_Certificate │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────── OB Termination Sleeves (OB_Termination_Sleeves) ─────────────────────╮\n",
"│ Delivery_Date,NUMBER_OF_SLEEVES,Batch_number,Supplier_Reference,Material_Certificate │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────── OB Titanium Tube (OB_TITANUIM_TUBE) ───────────────────────────╮\n",
"│ BATCH_NUMBER,Delivery_Date,NUMBER_OF_PIPES,Supplier_Reference,Material_Certificate │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────── OB Titanium Tube (OB_TITANUIM_TUBE) ───────────────────────────╮\n",
"│ BATCH_NUMBER,Delivery_Date,NUMBER_OF_PIPES,Supplier_Reference,Material_Certificate │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────────── OB Truss (OB_TRUSS) ───────────────────────────────────╮\n",
"│ PART_NUMBER,Operator_Name,Mould_Identifier,Manufacturer_Date │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────────── OB Truss (OB_TRUSS) ───────────────────────────────────╮\n",
"│ PART_NUMBER,Operator_Name,Mould_Identifier,Manufacturer_Date │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────── OB Type-0 Service (OB_TYPE_0_SERVICE) ──────────────────────────╮\n",
"│ MANUFACTURED_DATETIME,PART_NUMBER,SHIFTER_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────── OB Type-0 Service (OB_TYPE_0_SERVICE) ──────────────────────────╮\n",
"│ MANUFACTURED_DATETIME,PART_NUMBER,SHIFTER_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────── OB Wirebonding Protection Roof (OB_WB_PROTECTION_ROOF) ──────────────────╮\n",
"│ BATCH_NUMBER,MANUFACTURER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────── OB Wirebonding Protection Roof (OB_WB_PROTECTION_ROOF) ──────────────────╮\n",
"│ BATCH_NUMBER,MANUFACTURER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────── OB longeron composite structure (OB_LONGERON_COMPOSITE_STRUCTURE) ────────────╮\n",
"│ PART_NUMBER,Assembly_Date,Operator_Name │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────── OB longeron composite structure (OB_LONGERON_COMPOSITE_STRUCTURE) ────────────╮\n",
"│ PART_NUMBER,Assembly_Date,Operator_Name │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────── OEC Bare Half Ring (OEC_BARE_HR) ─────────────────────────────╮\n",
"│ LAYER,PRODUCTION_TYPE,GLUE,GRAPHITE_DOPED_GLUE,PART_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────── OEC Bare Half Ring (OEC_BARE_HR) ─────────────────────────────╮\n",
"│ LAYER,PRODUCTION_TYPE,GLUE,GRAPHITE_DOPED_GLUE,PART_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────── OEC Carbon Fibre Veil for HR (OEC_CARBON_FIBRE_VEIL_HR) ─────────────────╮\n",
"│ BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────── OEC Carbon Fibre Veil for HR (OEC_CARBON_FIBRE_VEIL_HR) ─────────────────╮\n",
"│ BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────── OEC Carbon Foam Trapezoids for HR (OEC_CARBON_FOAM_TRAPEZOIDS_HR) ────────────╮\n",
"│ BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────── OEC Carbon Foam Trapezoids for HR (OEC_CARBON_FOAM_TRAPEZOIDS_HR) ────────────╮\n",
"│ BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────── OEC Electrical Break for HR Ti pipe (OEC_ELECTRICAL_BREAK_HR_TI_PIPE) ──────────╮\n",
"│ PART_NUMBER,LAYER_NUMBER,PRODUCTION_TYPE,VENDOR_BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────── OEC Electrical Break for HR Ti pipe (OEC_ELECTRICAL_BREAK_HR_TI_PIPE) ──────────╮\n",
"│ PART_NUMBER,LAYER_NUMBER,PRODUCTION_TYPE,VENDOR_BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── OEC EoS for HR (OEC_EOS_HR) ───────────────────────────────╮\n",
"│ PART_NUMBER,LAYER,PRODUCTION_TYPE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── OEC EoS for HR (OEC_EOS_HR) ───────────────────────────────╮\n",
"│ PART_NUMBER,LAYER,PRODUCTION_TYPE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────── OEC Evaporator for HR (OEC_EVAPORATOR_HR) ────────────────────────╮\n",
"│ PART_NUMBER,LAYER,PRODUCTION_TYPE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────── OEC Evaporator for HR (OEC_EVAPORATOR_HR) ────────────────────────╮\n",
"│ PART_NUMBER,LAYER,PRODUCTION_TYPE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────── OEC Foam Blocks (OEC_FOAM_BLOCKS) ────────────────────────────╮\n",
"│ BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────── OEC Foam Blocks (OEC_FOAM_BLOCKS) ────────────────────────────╮\n",
"│ BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────── OEC Glue for HR (OEC_GLUE_HR) ──────────────────────────────╮\n",
"│ BATCH_NUMBER,VOLUME,MANUFACTURING_DATE,OPENING_DATE,EXPIRATION_DATE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────── OEC Glue for HR (OEC_GLUE_HR) ──────────────────────────────╮\n",
"│ BATCH_NUMBER,VOLUME,MANUFACTURING_DATE,OPENING_DATE,EXPIRATION_DATE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────── OEC Graphite Doped Glue for HR (OEC_GRAPHITE_DOPED_GLUE_HR) ───────────────╮\n",
"│ BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────── OEC Graphite Doped Glue for HR (OEC_GRAPHITE_DOPED_GLUE_HR) ───────────────╮\n",
"│ BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────── OEC Graphite Powder for HR (OEC_GRAPHITE_POWDER_HR) ───────────────────╮\n",
"│ BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────── OEC Graphite Powder for HR (OEC_GRAPHITE_POWDER_HR) ───────────────────╮\n",
"│ BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────── OEC Half Ring (OEC_HR) ──────────────────────────────────╮\n",
"│ LAYER,PRODUCTION_TYPE,PART_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────── OEC Half Ring (OEC_HR) ──────────────────────────────────╮\n",
"│ LAYER,PRODUCTION_TYPE,PART_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────── OEC Half-Sandwich (OEC_HALF_SANDWICH) ──────────────────────────╮\n",
"│ PART_NUMBER,LAYER,PRODUCTION_TYPE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────── OEC Half-Sandwich (OEC_HALF_SANDWICH) ──────────────────────────╮\n",
"│ PART_NUMBER,LAYER,PRODUCTION_TYPE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── OEC Handling Frame (OEC_HANDLING_FRAME) ─────────────────────────╮\n",
"│ LAYER,PRODUCTION_TYPE,PART_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── OEC Handling Frame (OEC_HANDLING_FRAME) ─────────────────────────╮\n",
"│ LAYER,PRODUCTION_TYPE,PART_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────── OEC Insert Rim for HR (OEC_INSTERT_RIM_HR) ────────────────────────╮\n",
"│ SHIFTER_NAME,PART_NUMBER,BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────── OEC Insert Rim for HR (OEC_INSTERT_RIM_HR) ────────────────────────╮\n",
"│ SHIFTER_NAME,PART_NUMBER,BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────── OEC Loading Adhesive for HR (OEC_LOADING_ADHESIVE_HR) ──────────────────╮\n",
"│ BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────── OEC Loading Adhesive for HR (OEC_LOADING_ADHESIVE_HR) ──────────────────╮\n",
"│ BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────── OEC Mounting Lug for HR (OEC_MOUNTING_LUG_HR) ──────────────────────╮\n",
"│ BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────── OEC Mounting Lug for HR (OEC_MOUNTING_LUG_HR) ──────────────────────╮\n",
"│ BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────── OEC Pigtail for HR (OEC_PIGTAIL_HR) ───────────────────────────╮\n",
"│ PART_NUMBER,LAYER,PRODUCTION_TYPE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────── OEC Pigtail for HR (OEC_PIGTAIL_HR) ───────────────────────────╮\n",
"│ PART_NUMBER,LAYER,PRODUCTION_TYPE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────── OEC Pipe Closeout for HR (OEC_PIPE_CLOSEOUT_HR) ─────────────────────╮\n",
"│ BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────── OEC Pipe Closeout for HR (OEC_PIPE_CLOSEOUT_HR) ─────────────────────╮\n",
"│ BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────── OEC Pre-preg for HR (OEC_PRE_PREG_HR) ──────────────────────────╮\n",
"│ BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────── OEC Pre-preg for HR (OEC_PRE_PREG_HR) ──────────────────────────╮\n",
"│ BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────── OEC Ti pipe for HR (OEC_TI_PIPE) ─────────────────────────────╮\n",
"│ PART_NUMBER,LAYER,PRODUCTION_TYPE,VENDOR_BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────── OEC Ti pipe for HR (OEC_TI_PIPE) ─────────────────────────────╮\n",
"│ PART_NUMBER,LAYER,PRODUCTION_TYPE,VENDOR_BATCH_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── OEC Transport Box (OEC_TRANSOPORT_BOX) ──────────────────────────╮\n",
"│ LAYER,PRODUCTION_TYPE,PART_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── OEC Transport Box (OEC_TRANSOPORT_BOX) ──────────────────────────╮\n",
"│ LAYER,PRODUCTION_TYPE,PART_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────── OEC Type-0 Tape (OEC_TYPE_0_TAPE) ────────────────────────────╮\n",
"│ PART_NUMBER,LAYER,PRODUCTION_TYPE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────── OEC Type-0 Tape (OEC_TYPE_0_TAPE) ────────────────────────────╮\n",
"│ PART_NUMBER,LAYER,PRODUCTION_TYPE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────── Optoboard (OPTOBOARD) ──────────────────────────────────╮\n",
"│ LHEP_SERIAL,LPGBT_MASTER,LPGBT_MASTER_ADDRESS,LPGBT_SLAVE1_ADDRESS,LPGBT_SLAVE2_ADDRESS,L │\n",
"│ PGBT_SLAVE3_ADDRESS,USER_ID_MASTER,OPTOBOARD_VERSION_NUMBER,NUMBER_lpGBTS_MOUNTED │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────── Optoboard (OPTOBOARD) ──────────────────────────────────╮\n",
"│ LHEP_SERIAL,LPGBT_MASTER,LPGBT_MASTER_ADDRESS,LPGBT_SLAVE1_ADDRESS,LPGBT_SLAVE2_ADDRESS,L │\n",
"│ PGBT_SLAVE3_ADDRESS,USER_ID_MASTER,OPTOBOARD_VERSION_NUMBER,NUMBER_lpGBTS_MOUNTED │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────── Optoboard Terminationboard (OPTOBOARD_TERMINATIONBOARD) ─────────────────╮\n",
"│ FLAVOUR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────── Optoboard Terminationboard (OPTOBOARD_TERMINATIONBOARD) ─────────────────╮\n",
"│ FLAVOUR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────────── Optobox (OPTOBOX) ────────────────────────────────────╮\n",
"│ FLAVOUR,NUMBER_OF_OPTOBOARDS │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────────── Optobox (OPTOBOX) ────────────────────────────────────╮\n",
"│ FLAVOUR,NUMBER_OF_OPTOBOARDS │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────── Optobox CAN Bus Cable (OPTOBOX_CAN_BUS_CABLE) ──────────────────────╮\n",
"│ FLAVOUR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────── Optobox CAN Bus Cable (OPTOBOX_CAN_BUS_CABLE) ──────────────────────╮\n",
"│ FLAVOUR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────── Optobox Connectorboard (OPTOBOX_CONNECTORBOARD) ─────────────────────╮\n",
"│ CONNECTORBOARD_SCHEME,FLAVOUR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────── Optobox Connectorboard (OPTOBOX_CONNECTORBOARD) ─────────────────────╮\n",
"│ CONNECTORBOARD_SCHEME,FLAVOUR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────── Optobox Optical Fan-out (OPTOBOX_OPTICAL_FAN_OUT) ────────────────────╮\n",
"│ FLAVOUR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────── Optobox Optical Fan-out (OPTOBOX_OPTICAL_FAN_OUT) ────────────────────╮\n",
"│ FLAVOUR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────── Optobox Power Cable (OPTOBOX_POWER_CABLE) ────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────── Optobox Power Cable (OPTOBOX_POWER_CABLE) ────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── Optobox Powerboard (OPTOBOX_POWERBOARD) ─────────────────────────╮\n",
"│ FLAVOUR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── Optobox Powerboard (OPTOBOX_POWERBOARD) ─────────────────────────╮\n",
"│ FLAVOUR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────── Optobox Powerbox (OPTOBOX_POWERBOX) ───────────────────────────╮\n",
"│ FLAVOUR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────── Optobox Powerbox (OPTOBOX_POWERBOX) ───────────────────────────╮\n",
"│ FLAVOUR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────── Optopanel (OPTOPANEL) ──────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────── Optopanel (OPTOPANEL) ──────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────── Optopanel cooling plate (OPTOPANEL_COOLING_PLATE) ────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────── Optopanel cooling plate (OPTOPANEL_COOLING_PLATE) ────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────── PSPP packaged (PSPP_PACKAGED) ──────────────────────────────╮\n",
"│ PSPP_PACKAGED_LN,PSPP_PACKAGED_SUPPLIER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────── PSPP packaged (PSPP_PACKAGED) ──────────────────────────────╮\n",
"│ PSPP_PACKAGED_LN,PSPP_PACKAGED_SUPPLIER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────────── Passives (PASSIVES) ───────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────────── Passives (PASSIVES) ───────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────────── Petal (PETAL) ──────────────────────────────────────╮\n",
"│ LOCALNAME,WEIGHT │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────────── Petal (PETAL) ──────────────────────────────────────╮\n",
"│ LOCALNAME,WEIGHT │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────── Pixel Hybrid Panel (HP) ─────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────── Pixel Hybrid Panel (HP) ─────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────── Pixel Inner System (PIXEL_IS) ──────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────── Pixel Inner System (PIXEL_IS) ──────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────── Pixel_test_component_Leo (Pixel_test_component) ─────────────────────╮\n",
"│ TYPE_PROPERTY │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────── Pixel_test_component_Leo (Pixel_test_component) ─────────────────────╮\n",
"│ TYPE_PROPERTY │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────── Power Flex (POWER_FLEX) ─────────────────────────────────╮\n",
"│ FUNCTION,CONNECTION_IN,CONNECTION_OUT,PROD_SERIAL_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────── Power Flex (POWER_FLEX) ─────────────────────────────────╮\n",
"│ FUNCTION,CONNECTION_IN,CONNECTION_OUT,PROD_SERIAL_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────────── Powerboard (PWB) ─────────────────────────────────────╮\n",
"│ PB_NUMBWE,LOCALNAME,BATCH,VERSION │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────────── Powerboard (PWB) ─────────────────────────────────────╮\n",
"│ PB_NUMBWE,LOCALNAME,BATCH,VERSION │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────── Powerboard Carrier Card (PWB_CARRIER) ──────────────────────────╮\n",
"│ ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────── Powerboard Carrier Card (PWB_CARRIER) ──────────────────────────╮\n",
"│ ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── Powerboard Coil (PWB_COIL) ────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── Powerboard Coil (PWB_COIL) ────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────── Powerboard Flex (PB_FLEX) ────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────── Powerboard Flex (PB_FLEX) ────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────── Powerboard Flex Array (PB_FLEX_ARRAY) ──────────────────────────╮\n",
"│ VERSION,BATCH,NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────── Powerboard Flex Array (PB_FLEX_ARRAY) ──────────────────────────╮\n",
"│ VERSION,BATCH,NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────── Powerboard Shield Box (PWB_SHIELDBOX) ──────────────────────────╮\n",
"│ VERSION,BATCH,PB_NUMBWE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────── Powerboard Shield Box (PWB_SHIELDBOX) ──────────────────────────╮\n",
"│ VERSION,BATCH,PB_NUMBWE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────── Powerboard Test Coupon (PB_TC) ──────────────────────────────╮\n",
"│ ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────── Powerboard Test Coupon (PB_TC) ──────────────────────────────╮\n",
"│ ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────── Prepreg Cut (PREPREG_CUT) ────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────── Prepreg Cut (PREPREG_CUT) ────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── Prepreg Roll (PREPREG_ROLL) ───────────────────────────────╮\n",
"│ PREPREP_LOG,PREPREG_ID,PREPREG_EXPDATE,NET_QTY,GROSS_WT,PAPER_WT,CORE_WT,NET_WT │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── Prepreg Roll (PREPREG_ROLL) ───────────────────────────────╮\n",
"│ PREPREP_LOG,PREPREG_ID,PREPREG_EXPDATE,NET_QTY,GROSS_WT,PAPER_WT,CORE_WT,NET_WT │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────── Production Sheet Endcap (Obsolete) (PROD_SHEET_END) ───────────────────╮\n",
"│ IDPROD │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────── Production Sheet Endcap (Obsolete) (PROD_SHEET_END) ───────────────────╮\n",
"│ IDPROD │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────── Quad Power Flex Type0 Ring L1 Test (QUAD_POWER_FLEX_TYPE0_RING_L1_TEST) ─────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────── Quad Power Flex Type0 Ring L1 Test (QUAD_POWER_FLEX_TYPE0_RING_L1_TEST) ─────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────────── RF-ID (RFID) ───────────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────────── RF-ID (RFID) ───────────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────────────── RIB (RIB) ────────────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────────────── RIB (RIB) ────────────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────── Rigid Ring (RIGID_RING) ─────────────────────────────────╮\n",
"│ FUNCTION,CONNECTION_IN,CONNECTION_OUT,PROD_SERIAL_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────── Rigid Ring (RIGID_RING) ─────────────────────────────────╮\n",
"│ FUNCTION,CONNECTION_IN,CONNECTION_OUT,PROD_SERIAL_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── STAR Hybrid Assembly (HYBRID_ASSEMBLY) ──────────────────────────╮\n",
"│ LOCAL_NAME,ASSEMBLY_PICKUP_TOOL,ASSEMBLY_JIG,ASSEMBLY_CHIPTRAY,GLUE_SYRINGE,HYBRID_NAME,P │\n",
"│ ICK_AND_PLACE_MACHINE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── STAR Hybrid Assembly (HYBRID_ASSEMBLY) ──────────────────────────╮\n",
"│ LOCAL_NAME,ASSEMBLY_PICKUP_TOOL,ASSEMBLY_JIG,ASSEMBLY_CHIPTRAY,GLUE_SYRINGE,HYBRID_NAME,P │\n",
"│ ICK_AND_PLACE_MACHINE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────── STAR Hybrid Flex (HYBRID_FLEX) ──────────────────────────────╮\n",
"│ MANUFACTURER_ID,RFID,LOCAL_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────── STAR Hybrid Flex (HYBRID_FLEX) ──────────────────────────────╮\n",
"│ MANUFACTURER_ID,RFID,LOCAL_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────── STAR Hybrid Flex Array (HYBRID_FLEX_ARRAY) ────────────────────────╮\n",
"│ MANUFACTURER_ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────── STAR Hybrid Flex Array (HYBRID_FLEX_ARRAY) ────────────────────────╮\n",
"│ MANUFACTURER_ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────── STAR Hybrid Flex Panel (HYBRID_FLEX_PANEL) ────────────────────────╮\n",
"│ MANUFACTURER_ID,IMPEDANCE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────── STAR Hybrid Flex Panel (HYBRID_FLEX_PANEL) ────────────────────────╮\n",
"│ MANUFACTURER_ID,IMPEDANCE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────── STAR Hybrid Flex Test Coupon (HYBRID_FLEX_TEST_COUPON) ──────────────────╮\n",
"│ MANUFACTURER_ID,NUMBER_REFLOW_CYCLES │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────── STAR Hybrid Flex Test Coupon (HYBRID_FLEX_TEST_COUPON) ──────────────────╮\n",
"│ MANUFACTURER_ID,NUMBER_REFLOW_CYCLES │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────── STAR Hybrid Test Panel (HYBRID_TEST_PANEL) ────────────────────────╮\n",
"│ PANEL_NAME,RFID,NO_CYCLES,LOCAL_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────── STAR Hybrid Test Panel (HYBRID_TEST_PANEL) ────────────────────────╮\n",
"│ PANEL_NAME,RFID,NO_CYCLES,LOCAL_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────────── STAR Tools (TOOLS) ────────────────────────────────────╮\n",
"│ LOCAL_NAME,RFID,DRAWING_NUMBER,PRINTED_SERIAL_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────────── STAR Tools (TOOLS) ────────────────────────────────────╮\n",
"│ LOCAL_NAME,RFID,DRAWING_NUMBER,PRINTED_SERIAL_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────────── Sensor (SENSOR) ─────────────────────────────────────╮\n",
"│ ID,DATE_RECEIVED │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────────── Sensor (SENSOR) ─────────────────────────────────────╮\n",
"│ ID,DATE_RECEIVED │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────── Sensor Glue (SENSOR_GLUE) ────────────────────────────────╮\n",
"│ BATCH-ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────── Sensor Glue (SENSOR_GLUE) ────────────────────────────────╮\n",
"│ BATCH-ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────── Sensor H test (SENSOR_H_TEST) ──────────────────────────────╮\n",
"│ DATE_RECEIVED,ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────── Sensor H test (SENSOR_H_TEST) ──────────────────────────────╮\n",
"│ DATE_RECEIVED,ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────── Sensor Halfmoons (SENSOR_HALFMOONS) ───────────────────────────╮\n",
"│ DATE_RECEIVED,ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────── Sensor Halfmoons (SENSOR_HALFMOONS) ───────────────────────────╮\n",
"│ DATE_RECEIVED,ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── Sensor Jiayi CLone (SENSOR_Jiayi_CLONE) ─────────────────────────╮\n",
"│ ID,DATE_RECEIVED │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── Sensor Jiayi CLone (SENSOR_Jiayi_CLONE) ─────────────────────────╮\n",
"│ ID,DATE_RECEIVED │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────── Sensor MD8 (SENSOR_MD8) ─────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────── Sensor MD8 (SENSOR_MD8) ─────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────── Sensor Mini (SENSOR_MINI) ────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────── Sensor Mini (SENSOR_MINI) ────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────── Sensor Mini&amp;MD8 (SENSOR_MINI_MD8) ────────────────────────────╮\n",
"│ WAFER_POSITION_LABEL,ID,DATE_RECEIVED │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────── Sensor Mini&MD8 (SENSOR_MINI_MD8) ────────────────────────────╮\n",
"│ WAFER_POSITION_LABEL,ID,DATE_RECEIVED │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────── Sensor Mini_LS (SENSOR_MINI_LS) ─────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────── Sensor Mini_LS (SENSOR_MINI_LS) ─────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────── Sensor Mini_SS (SENSOR_MINI_SS) ─────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────── Sensor Mini_SS (SENSOR_MINI_SS) ─────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── Sensor QAchip test (SENSOR_QCHIP_TEST) ──────────────────────────╮\n",
"│ WAFER_POSITION_LABEL,ID,DATE_RECEIVED │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── Sensor QAchip test (SENSOR_QCHIP_TEST) ──────────────────────────╮\n",
"│ WAFER_POSITION_LABEL,ID,DATE_RECEIVED │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── Sensor QAmini test (SENSOR_QAMINI_TEST) ─────────────────────────╮\n",
"│ WAFER_POSITION_LABEL,ID,DATE_RECEIVED │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── Sensor QAmini test (SENSOR_QAMINI_TEST) ─────────────────────────╮\n",
"│ WAFER_POSITION_LABEL,ID,DATE_RECEIVED │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────── Sensor S test (SENSOR_S_TEST) ──────────────────────────────╮\n",
"│ ID,DATE_RECEIVED,POST_CREATION_DATUM │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────── Sensor S test (SENSOR_S_TEST) ──────────────────────────────╮\n",
"│ ID,DATE_RECEIVED,POST_CREATION_DATUM │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────── Sensor Test Component (SENSOR_TEST_COMPONENT) ──────────────────────╮\n",
"│ ID,NAME1 │\n",
"│ ,NAME2,ADD_VAR1,ADDED_NAME2,NAME_OF_ROSE,OBLIGATORY_EULOGY,2ND_ID,TEST_CODE_TABLE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────── Sensor Test Component (SENSOR_TEST_COMPONENT) ──────────────────────╮\n",
"│ ID,NAME1 │\n",
"│ ,NAME2,ADD_VAR1,ADDED_NAME2,NAME_OF_ROSE,OBLIGATORY_EULOGY,2ND_ID,TEST_CODE_TABLE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────── Sensor Test Component with ID (SENSOR_TEST_ID) ──────────────────────╮\n",
"│ ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────── Sensor Test Component with ID (SENSOR_TEST_ID) ──────────────────────╮\n",
"│ ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────── Sensor Test Component without ID (SENSOR_TEST_NOID) ───────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────── Sensor Test Component without ID (SENSOR_TEST_NOID) ───────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── Sensor Test Stages (SENSOR_TEST_STAGES) ─────────────────────────╮\n",
"│ BATCH_WAFER_NO,RECEPTION_DATE,NAME1 ,NAME2 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── Sensor Test Stages (SENSOR_TEST_STAGES) ─────────────────────────╮\n",
"│ BATCH_WAFER_NO,RECEPTION_DATE,NAME1 ,NAME2 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────── Sensor Testchip&amp;MD8 (SENSOR_TESTCHIP_MD8) ────────────────────────╮\n",
"│ WAFER_POSITION_LABEL,ID,DATE_RECEIVED │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────── Sensor Testchip&MD8 (SENSOR_TESTCHIP_MD8) ────────────────────────╮\n",
"│ WAFER_POSITION_LABEL,ID,DATE_RECEIVED │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────── Sensor Tile (SENSOR_TILE) ────────────────────────────────╮\n",
"│ MAN_SNO,MAIN_VENDOR,SENSOR_TYPE_OR_TEST_STRUCTURE,VERSION,SENSOR_SCRATCHID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────── Sensor Tile (SENSOR_TILE) ────────────────────────────────╮\n",
"│ MAN_SNO,MAIN_VENDOR,SENSOR_TYPE_OR_TEST_STRUCTURE,VERSION,SENSOR_SCRATCHID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────── Sensor W test (SENSOR_W_TEST) ──────────────────────────────╮\n",
"│ SENSOR_WAFER_INGOT_NUMBER,ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────── Sensor W test (SENSOR_W_TEST) ──────────────────────────────╮\n",
"│ SENSOR_WAFER_INGOT_NUMBER,ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────── Sensor WBTS (SENSOR_WBTS) ────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────── Sensor WBTS (SENSOR_WBTS) ────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── Sensor Wafer (SENSOR_WAFER) ───────────────────────────────╮\n",
"│ UBM,DICING,MAN_SNO,MAIN_VENDOR,VERSION,DEPLETION_VOLTAGE,SIGMA_VDEPL │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── Sensor Wafer (SENSOR_WAFER) ───────────────────────────────╮\n",
"│ UBM,DICING,MAN_SNO,MAIN_VENDOR,VERSION,DEPLETION_VOLTAGE,SIGMA_VDEPL │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── Sensor Wafer (SENSOR_WAFER) ───────────────────────────────╮\n",
"│ SENSOR_WAFER_INGOT_NUMBER,ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── Sensor Wafer (SENSOR_WAFER) ───────────────────────────────╮\n",
"│ SENSOR_WAFER_INGOT_NUMBER,ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────── Sensor component for testing (SENSOR_COMPONENT_FOR_TESTING) ───────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────── Sensor component for testing (SENSOR_COMPONENT_FOR_TESTING) ───────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────── Sensor further diced object (SENSOR_FURTHER_DICED_OBJ) ──────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────── Sensor further diced object (SENSOR_FURTHER_DICED_OBJ) ──────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────────── Stave (STAVE) ──────────────────────────────────────╮\n",
"│ WEIGHT,LOCALNAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────────── Stave (STAVE) ──────────────────────────────────────╮\n",
"│ WEIGHT,LOCALNAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────── Stave Loading Bridge (STAVE-LOADING-BRIDGE) ───────────────────────╮\n",
"│ MODULE-POSITION,CALIBRATED,PICKUP-TOOL │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────── Stave Loading Bridge (STAVE-LOADING-BRIDGE) ───────────────────────╮\n",
"│ MODULE-POSITION,CALIBRATED,PICKUP-TOOL │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────── Strip_Check (123456789) ─────────────────────────────────╮\n",
"│ 123456789 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────── Strip_Check (123456789) ─────────────────────────────────╮\n",
"│ 123456789 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────── Sven Bulk (SVEN_BULK) ──────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────── Sven Bulk (SVEN_BULK) ──────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────── Sven Item 2 (SVEN-ITEM-2) ────────────────────────────────╮\n",
"│ NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────── Sven Item 2 (SVEN-ITEM-2) ────────────────────────────────╮\n",
"│ NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── Sven Test Assembly (SVEN-TEST-ASSEMBLY) ─────────────────────────╮\n",
"│ NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── Sven Test Assembly (SVEN-TEST-ASSEMBLY) ─────────────────────────╮\n",
"│ NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────── Sven Test Assembly 2 (SVEN-TEST-ASSEMBLY-2) ───────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────── Sven Test Assembly 2 (SVEN-TEST-ASSEMBLY-2) ───────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────── Sven Test Batch (SVEN-TEST-BATCH) ────────────────────────────╮\n",
"│ GLUE-NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────── Sven Test Batch (SVEN-TEST-BATCH) ────────────────────────────╮\n",
"│ GLUE-NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────── Sven Test Item (SVEN-TEST-ITEM) ─────────────────────────────╮\n",
"│ NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────── Sven Test Item (SVEN-TEST-ITEM) ─────────────────────────────╮\n",
"│ NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── Sven Test Material (SVEN-TEST-MATERIAL) ─────────────────────────╮\n",
"│ NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── Sven Test Material (SVEN-TEST-MATERIAL) ─────────────────────────╮\n",
"│ NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────── Sven Test Panel (SVEN-TEST-PANEL) ────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────── Sven Test Panel (SVEN-TEST-PANEL) ────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── Sven Test Reusable (SVEN-TEST-REUSABLE) ─────────────────────────╮\n",
"│ GLUE-NAME,COUNTER,LATER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── Sven Test Reusable (SVEN-TEST-REUSABLE) ─────────────────────────╮\n",
"│ GLUE-NAME,COUNTER,LATER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────── Sven Test Reusable 2 (SVEN-TEST-REUSABLE-2) ───────────────────────╮\n",
"│ NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────── Sven Test Reusable 2 (SVEN-TEST-REUSABLE-2) ───────────────────────╮\n",
"│ NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────── TEST_COMPONENT_TYPE (TEST79) ───────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────── TEST_COMPONENT_TYPE (TEST79) ───────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────────────── Test (QWE) ────────────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────────────── Test (QWE) ────────────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────── Test Frauke Assembly (TEST_FRAUKE_ASSEMBLY) ───────────────────────╮\n",
"│ PROP_FRAUKE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────── Test Frauke Assembly (TEST_FRAUKE_ASSEMBLY) ───────────────────────╮\n",
"│ PROP_FRAUKE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────── Test Frauke Item (TEST_FRAUKE_ITEM) ───────────────────────────╮\n",
"│ ID_FRAUKE,COC │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────── Test Frauke Item (TEST_FRAUKE_ITEM) ───────────────────────────╮\n",
"│ ID_FRAUKE,COC │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── Test Frauke Lot_Bulk (TEST_FRAUKE_LOT) ──────────────────────────╮\n",
"│ TEST_PROPERTY │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── Test Frauke Lot_Bulk (TEST_FRAUKE_LOT) ──────────────────────────╮\n",
"│ TEST_PROPERTY │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────── Test Frauke Material (TEST_FRAUKE_MATERIAL) ───────────────────────╮\n",
"│ ID_TEST_FRAUKE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────── Test Frauke Material (TEST_FRAUKE_MATERIAL) ───────────────────────╮\n",
"│ ID_TEST_FRAUKE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────── Test-Wafer-Simon (TEST-WAFER-SIMON) ───────────────────────────╮\n",
"│ VENDOR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────── Test-Wafer-Simon (TEST-WAFER-SIMON) ───────────────────────────╮\n",
"│ VENDOR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────── TestComponent -TiLoop (TESTTILOOP) ────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────── TestComponent -TiLoop (TESTTILOOP) ────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── Testframe R0 (Obsolete) (TESTFRAME_R0) ──────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── Testframe R0 (Obsolete) (TESTFRAME_R0) ──────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────── Testing import AMAC Chip (AMAC_TESTING_IMPORT) ──────────────────────╮\n",
"│ VERSION │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────── Testing import AMAC Chip (AMAC_TESTING_IMPORT) ──────────────────────╮\n",
"│ VERSION │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────── Thermal Foam Block Petal (THERMALFOAM_PETAL) ───────────────────────╮\n",
"│ DELIVERY_DATE,SIZE,K_VALUE,DENSITY,THERMALFOAM_ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────── Thermal Foam Block Petal (THERMALFOAM_PETAL) ───────────────────────╮\n",
"│ DELIVERY_DATE,SIZE,K_VALUE,DENSITY,THERMALFOAM_ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────── Thermal Foam Set (THERMALFOAMSET) ────────────────────────────╮\n",
"│ TF_BLOCKID,MANUFACTURING_DATE,CNCPROGRAMID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────── Thermal Foam Set (THERMALFOAMSET) ────────────────────────────╮\n",
"│ TF_BLOCKID,MANUFACTURING_DATE,CNCPROGRAMID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────── Titanium Tube (TI_TUBE) ─────────────────────────────────╮\n",
"│ MANUFACTURER_ID,DATE_OF_ARRIVAL,OD_COC,WALL_THICKNESS_COC,NUMBER_OF_LENGTHS,NUMBER_REMAIN │\n",
"│ ING,NUMBER_USED,NUMBER_DISCARDED,NUMBER_UPDATE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────── Titanium Tube (TI_TUBE) ─────────────────────────────────╮\n",
"│ MANUFACTURER_ID,DATE_OF_ARRIVAL,OD_COC,WALL_THICKNESS_COC,NUMBER_OF_LENGTHS,NUMBER_REMAIN │\n",
"│ ING,NUMBER_USED,NUMBER_DISCARDED,NUMBER_UPDATE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────── Titanium Tube Length (TI_TUBE_LENGTH) ──────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────── Titanium Tube Length (TI_TUBE_LENGTH) ──────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────── Titanium termination pieces (TI_TERMINATIONS) ──────────────────────╮\n",
"│ MANUFACTURER_ID,DATE_OF_ARRIVAL,NUMBER_OF_UNITS,NUMBER_USED,NUMBER_DISCARDED,NUMBER_REMAI │\n",
"│ NING,NUMBER_UPDATE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────── Titanium termination pieces (TI_TERMINATIONS) ──────────────────────╮\n",
"│ MANUFACTURER_ID,DATE_OF_ARRIVAL,NUMBER_OF_UNITS,NUMBER_USED,NUMBER_DISCARDED,NUMBER_REMAI │\n",
"│ NING,NUMBER_UPDATE │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────── Titanium termination single piece (TI_TERMINATION) ────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────── Titanium termination single piece (TI_TERMINATION) ────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────── Triplet Data Flex Type0 Ring L05 Test (TRIPLET_DATA_FLEX_TYPE0_RING_L05_TEST) ──────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────── Triplet Data Flex Type0 Ring L05 Test (TRIPLET_DATA_FLEX_TYPE0_RING_L05_TEST) ──────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────── Type-1 Service (TYPE1_SERVICE) ──────────────────────────────╮\n",
"│ FLAVOUR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────── Type-1 Service (TYPE1_SERVICE) ──────────────────────────────╮\n",
"│ FLAVOUR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────── US Test Pixel Component (US_TEST_PIXEL_COMPONENT) ────────────────────╮\n",
"│ FUNCTION │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────── US Test Pixel Component (US_TEST_PIXEL_COMPONENT) ────────────────────╮\n",
"│ FUNCTION │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────── UofT Star Hybrid Assembly TestClone (UofT_Star_Hybrid_Assembly_TestClone) ────────╮\n",
"│ ASSEMBLY_PICKUP_TOOL,ASSEMBLY_JIG,GLUE_SYRINGE,LOCAL_NAME,ASSEMBLY_CHIPTRAY,PICK_AND_PLAC │\n",
"│ E_MACHINE,HYBRID_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────── UofT Star Hybrid Assembly TestClone (UofT_Star_Hybrid_Assembly_TestClone) ────────╮\n",
"│ ASSEMBLY_PICKUP_TOOL,ASSEMBLY_JIG,GLUE_SYRINGE,LOCAL_NAME,ASSEMBLY_CHIPTRAY,PICK_AND_PLAC │\n",
"│ E_MACHINE,HYBRID_NAME │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────────────── VL+ (VLP) ────────────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────────────── VL+ (VLP) ────────────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────────── VTRx+ (VTRX+) ──────────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────────── VTRx+ (VTRX+) ──────────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── Wiglet Termination (WIGLET_TERMINATION) ─────────────────────────╮\n",
"│ DATE_OF_WELDING │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── Wiglet Termination (WIGLET_TERMINATION) ─────────────────────────╮\n",
"│ DATE_OF_WELDING │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────── Williams ABC gelpak (Williams_ABC_gelpak) ────────────────────────╮\n",
"│ Williams_ABC_gelpak_name,Williams_ABC_gelpak_quantity │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────── Williams ABC gelpak (Williams_ABC_gelpak) ────────────────────────╮\n",
"│ Williams_ABC_gelpak_name,Williams_ABC_gelpak_quantity │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────── Williams ABCStar failed ASICs (William_ABCStar_failed_ASICs) ───────────────╮\n",
"│ William_ABCStar_failed_ASICs_weight,William_ABCStar_failed_ASICs_wafer,William_ABCStar_fa │\n",
"│ iled_ASICs_die,William_ABCstar_failed_ASICs_AlternativeID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────── Williams ABCStar failed ASICs (William_ABCStar_failed_ASICs) ───────────────╮\n",
"│ William_ABCStar_failed_ASICs_weight,William_ABCStar_failed_ASICs_wafer,William_ABCStar_fa │\n",
"│ iled_ASICs_die,William_ABCstar_failed_ASICs_AlternativeID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────────── bPOL12V (BPOL12V) ────────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────────── bPOL12V (BPOL12V) ────────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── bPOL12V Chip (BPOL12V_CHIP) ───────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── bPOL12V Chip (BPOL12V_CHIP) ───────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────── bPOL2V5 Carrier Board (BPOL2V5_CARRIER_BOARD) ──────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────── bPOL2V5 Carrier Board (BPOL2V5_CARRIER_BOARD) ──────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── bPOL2V5 Chip (BPOL2V5_CHIP) ───────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── bPOL2V5 Chip (BPOL2V5_CHIP) ───────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────── bare hybrid-HH (Obsolete) (00000001) ───────────────────────────╮\n",
"│ demo1 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────── bare hybrid-HH (Obsolete) (00000001) ───────────────────────────╮\n",
"│ demo1 │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────── batch of test pipes (TEST_PIPE_BATCH) ──────────────────────────╮\n",
"│ PIPE_MANUFACTURER,PIPE_BATCH_ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────── batch of test pipes (TEST_PIPE_BATCH) ──────────────────────────╮\n",
"│ PIPE_MANUFACTURER,PIPE_BATCH_ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────── electrical break (pkreb) ─────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────── electrical break (pkreb) ─────────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────── linPOL12V (PWB_LINPOL) ──────────────────────────────────╮\n",
"│ BATCH │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────── linPOL12V (PWB_LINPOL) ──────────────────────────────────╮\n",
"│ BATCH │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────────── lpGBT (PIXEL_LPGBT) ───────────────────────────────────╮\n",
"│ LPGBT_CHIPID,LPGBT_USERID,LPGBT_ADDR,lpGBT_TRANSCEIVER_MODE,LPGBT_SERIAL_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────────── lpGBT (PIXEL_LPGBT) ───────────────────────────────────╮\n",
"│ LPGBT_CHIPID,LPGBT_USERID,LPGBT_ADDR,lpGBT_TRANSCEIVER_MODE,LPGBT_SERIAL_NUMBER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────── test assembly (test_assembly) ──────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────── test assembly (test_assembly) ──────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── test carrier (TESTCARRIER) ────────────────────────────────╮\n",
"│ MANUFACTURER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── test carrier (TESTCARRIER) ────────────────────────────────╮\n",
"│ MANUFACTURER │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────── test carrier monika (test_carrier_monika) ────────────────────────╮\n",
"│ n_used │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────── test carrier monika (test_carrier_monika) ────────────────────────╮\n",
"│ n_used │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────── test chip monika (TESTCHIPMONIKA) ────────────────────────────╮\n",
"│ VENDOR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────── test chip monika (TESTCHIPMONIKA) ────────────────────────────╮\n",
"│ VENDOR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────── test cloned component (testtestclonecomponent) ──────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────── test cloned component (testtestclonecomponent) ──────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────── test glue (test_glue) ──────────────────────────────────╮\n",
"│ vendro-id │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────── test glue (test_glue) ──────────────────────────────────╮\n",
"│ vendro-id │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────── test material (test_material) ──────────────────────────────╮\n",
"│ batch_name │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────── test material (test_material) ──────────────────────────────╮\n",
"│ batch_name │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭──────────────────────────────── test module (TESTMODULE) ─────────────────────────────────╮\n",
"│ MANUFACTURER,HEIGHT │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭──────────────────────────────── test module (TESTMODULE) ─────────────────────────────────╮\n",
"│ MANUFACTURER,HEIGHT │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────── test module monika (test_module_monika) ─────────────────────────╮\n",
"│ vendor │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────── test module monika (test_module_monika) ─────────────────────────╮\n",
"│ vendor │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭───────────────────────────────── test piles (TEST_PIPES) ─────────────────────────────────╮\n",
"│ VENDOR_ID,NO_PIPES │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭───────────────────────────────── test piles (TEST_PIPES) ─────────────────────────────────╮\n",
"│ VENDOR_ID,NO_PIPES │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────────────── test pipe (TEST_PIPE) ──────────────────────────────────╮\n",
"│ MANUFACTURER,BATCH_ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────────────── test pipe (TEST_PIPE) ──────────────────────────────────╮\n",
"│ MANUFACTURER,BATCH_ID │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭─────────────────────────────── test satoshi (TEST_SATOSHI) ───────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭─────────────────────────────── test satoshi (TEST_SATOSHI) ───────────────────────────────╮\n",
"│ │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">╭────────────────────────── test wafer monika (TESTWAFER_MONIKA) ───────────────────────────╮\n",
"│ VENDOR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n",
"</pre>\n"
],
"text/plain": [
"╭────────────────────────── test wafer monika (TESTWAFER_MONIKA) ───────────────────────────╮\n",
"│ VENDOR │\n",
"╰───────────────────────────────────────────────────────────────────────────────────────────╯\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"console = Console()\n",
"\n",
"all_properties_comp = []\n",
"\n",
"for ctype in c.get('listComponentTypes'):\n",
" properties = ctype.get(\"properties\", []) or []\n",
" codes = [(prop['code'], prop.get('description',None), ctype['code']) for prop in properties]\n",
" all_properties_comp.extend(codes)\n",
" console.print(Panel(\",\".join(code[0] for code in codes), title=f\"{ctype['name']} ({ctype['code']})\"))\n",
" \n",
"all_properties_comp = set(all_properties_comp)"
]
},
{
"cell_type": "code",
"execution_count": 39,
"id": "16c659df",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\"><span style=\"font-weight: bold\">[</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'123456789'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'123456789'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'2ND_ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'the backup identification'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TEST_COMPONENT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ABC130'</span>, <span style=\"color: #800080; text-decoration-color: #800080; font-style: italic\">None</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_WAFER_CLONE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ABCSTAR'</span>, <span style=\"color: #800080; text-decoration-color: #800080; font-style: italic\">None</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_WAFER_CLONE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ABCWAFERFOUNDRYWAFERID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Foundry Wafer ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_WAFER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ABCWAFERLOTNAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC Wafer Lot Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_WAFER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ABCWAFERNAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC wafer name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_WAFER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ABCWAFERNAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC wafer name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_WAFER_TEST'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ABCWAFERNUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC Wafer Number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_WAFER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ABC_GELPACK_CIRCUIT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_GELPACK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ABC_GELPACK_COUNT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_GELPACK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ABC_GELPACK_DATE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_GELPACK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ABC_GELPACK_LOT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_GELPACK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ABC_GELPACK_QTE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_GELPACK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ABC_GELPACK_TABLE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_GELPACK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ADDED_NAME2'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Name added after the object definition'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TEST_COMPONENT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ADD_VAR1'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Name added after the object definition'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TEST_COMPONENT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'AMACNUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'The same as die_index'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'AMAC_EFUSE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'The burned in eFuse'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'AMAC_GELPACK_CIRCUIT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC_GELPACK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'AMAC_GELPACK_COUNT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC_GELPACK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'AMAC_GELPACK_DATE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC_GELPACK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'AMAC_GELPACK_LOT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC_GELPACK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'AMAC_GELPACK_QTE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC_GELPACK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'AMAC_GELPACK_TABLE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC_GELPACK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'AM_SLOPE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ANALOG_PASS_NUM'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ANALOG_VITAL_PASS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'If the AMAC passed all the vital analog tests'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ASSEMBLY_CHIPTRAY'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Chip Tray for ASIC assembly'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_ASSEMBLY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ASSEMBLY_CHIPTRAY'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Chip Tray for ASIC assembly'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HYBRID_ASSEMBLY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'ASSEMBLY_CHIPTRAY'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Chip Tray for ASIC assembly'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'UofT_Star_Hybrid_Assembly_TestClone'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ASSEMBLY_JIG'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'JJ_TEST_STAR_HYBRID_ASSEMBLY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ASSEMBLY_JIG'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Jig for ASIC assembly'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_ASSEMBLY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ASSEMBLY_JIG'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Jig for ASIC assembly'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HYBRID_ASSEMBLY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ASSEMBLY_JIG'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Jig for ASIC assembly'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'UofT_Star_Hybrid_Assembly_TestClone'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ASSEMBLY_PICKUP_TOOL'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Pick-Up Tool for ASIC assembly'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_ASSEMBLY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ASSEMBLY_PICKUP_TOOL'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Pick-Up Tool for ASIC assembly'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HYBRID_ASSEMBLY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'ASSEMBLY_PICKUP_TOOL'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Pick-Up Tool for ASIC assembly'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'UofT_Star_Hybrid_Assembly_TestClone'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ATESTTT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'testtest'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABTEST'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Assembly_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_BARE_MODULE_CELL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Assembly_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_FUNCTIONAL_IHR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Assembly_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_FUNCTIONAL_LONGERON'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Assembly_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_FUNCTIONAL_PIPE_LONGERON'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Assembly_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_LONGERON_COMPOSITE_STRUCTURE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Assembly_Tool_Identified'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_BARE_MODULE_CELL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Assembly_Tool_Position'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_BARE_MODULE_CELL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'FOAM'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PB_FLEX_ARRAY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PWB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TESTPANEL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Batch number etched on the shield box.'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PWB_SHIELDBOX'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Date when the item was received.'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PWB_LINPOL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH-ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_GLUE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH_ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TEST_PIPE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_LOADING_ADHESIVE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_Longeron_Inserts'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_RAW_MATERIAL_AL_G'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_WB_PROTECTION_ROOF'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">' Batch Number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_PIPE_CLOSEOUT_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Batch # by manufacture'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_INSERTS'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Batch # from manufacture'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_TITANUIM_TUBE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Batch Number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_PRE_PREG_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Batch number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_CARBON_FIBRE_VEIL_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Batch number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_CARBON_FOAM_TRAPEZOIDS_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Batch number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_FOAM_BLOCKS'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Batch number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_GLUE_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Batch number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_GRAPHITE_DOPED_GLUE_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Batch number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_GRAPHITE_POWDER_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Batch number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_INSTERT_RIM_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Batch number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_LOADING_ADHESIVE_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Batch number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_MOUNTING_LUG_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BATCH_WAFER_NO'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TEST_STAGES'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BENDING_RADIUS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BJG_PROP_1'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'BJG_TEST_COMP'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BLOCK_SIZE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Size of the block e.g. 635x368.3x5.5'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HONEYCOMB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BORING_STRING_0'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'KKTESTITEM1'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BORING_STRING_1'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'KKTESTITEM1'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BORING_STRING_2'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'KKTESTITEM1'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BORING_STRING_3'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'KKTESTITEM1'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BORING_STRING_4'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'KKTESTITEM1'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BORING_STRING_5'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'KKTESTITEM1'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BORING_STRING_6'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'KKTESTITEM1'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BORING_STRING_7'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'KKTESTITEM1'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'BORING_STRING_8'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'KKTESTITEM1'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Batch_number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_Termination_Sleeves'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CABLE_DIAMETER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CABLE_LENGTH'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CALIBRATED'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'has rotation calibration been done'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'STAVE-LOADING-BRIDGE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'CF_SOURCE_LOCATION'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Location/website/company the CF was manufactured / bought from '</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'CF_MAT'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CH0_ZERO_CALIB'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CH10_ZERO_CALIB'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CH11_ZERO_CALIB'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CH12_ZERO_CALIB'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CH13_ZERO_CALIB'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CH14_ZERO_CALIB'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CH15_ZERO_CALIB'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CH1_ZERO_CALIB'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CH2_ZERO_CALIB'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CH3_ZERO_CALIB'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CH4_ZERO_CALIB'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CH5_ZERO_CALIB'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CH6_ZERO_CALIB'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CH7_ZERO_CALIB'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CH8_ZERO_CALIB'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CH9_ZERO_CALIB'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CLOSEOUT_ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CLOSEOUT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CLOSEOUT_QUANTITY'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Remaining quantity'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CLOSEOUT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CLOSEOUT_SET_ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CLOSEOUT_SET'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'CLOSEOUT_SET_INFO'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'List of closeout (batch) IDs for each sub-part of closeout set'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'CLOSEOUT_SET'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CLOSEOUT_SET_MASS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Mass of all parts of closeout set'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CLOSEOUT_SET'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CNCPROGRAMID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CNC program identifier'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'THERMALFOAMSET'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'COC'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Uploaded pdf'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TEST_FRAUKE_ITEM'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'COLOR'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'COMMUNICATION_GOOD'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CONNECTION_IN'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'DATA_FLEX'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CONNECTION_IN'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'POWER_FLEX'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CONNECTION_IN'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'RIGID_RING'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CONNECTION_OUT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'DATA_FLEX'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CONNECTION_OUT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'POWER_FLEX'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CONNECTION_OUT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'RIGID_RING'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'CONNECTORBOARD_SCHEME'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Shows which configuration scheme of the Connectorboard was soldered.'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTOBOX_CONNECTORBOARD'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'CONTAINER_LABEL'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'A manufacturer identification on the bottle or locally added label'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'GLUE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CONTAINER_VOLUME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Container volume (value and unit)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'GLUE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'COOL_Purpose'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Intended use of cooling tube. i.e. Specific Prototype, Pre-Production, Production'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'COOL_TUBE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'COOL_STRING'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'KKTESTITEM1'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'COOL_STRING1'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'KKTESTITEM2'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'COOL_STRING2'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'KKTESTITEM2'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CORE_WT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PREPREG_ROLL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'COUNTER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SVEN-TEST-REUSABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CROSS_SECTION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'CYCLES_USED'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'How often whas this panel used for bonding hybrids'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TESTPANEL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DATA_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'DATE_OF_ARRIVAL'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Date of arrival if different from date registered [YY/MM/DD]'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'ELEC_BREAK'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'DATE_OF_ARRIVAL'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Date of arrival if different from date registered [YY/MM/DD]'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'TI_TERMINATIONS'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DATE_OF_ARRIVAL'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Date received from manufacturer (YYYY/MM/DD)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TI_TUBE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'DATE_OF_WELDING'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Date of welding if different from date of registration (YYYY-MM-DD)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'COOLING_LOOP_PETAL'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'DATE_OF_WELDING'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Date of welding if different to date of stage change [YY/MM/DD]'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'WIGLET_TERMINATION'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DATE_PANEL_MANUFACTURED'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DATE_RECEIVED'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Date received from HPK (DD/MM/YYY)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TESTCHIP_MD8'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DATE_RECEIVED'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Date received from HPK (DD/MM/YYYY)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DATE_RECEIVED'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Date received from HPK (DD/MM/YYYY)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_HALFMOONS'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DATE_RECEIVED'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Date received from HPK (DD/MM/YYYY)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_H_TEST'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DATE_RECEIVED'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Date received from HPK (DD/MM/YYYY)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_Jiayi_CLONE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DATE_RECEIVED'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Date received from HPK (DD/MM/YYYY)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_MINI_MD8'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DATE_RECEIVED'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Date received from HPK (DD/MM/YYYY)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_QAMINI_TEST'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DATE_RECEIVED'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Date received from HPK (DD/MM/YYYY)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_QCHIP_TEST'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DATE_RECEIVED'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Date received from HPK (DD/MM/YYYY)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_S_TEST'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DATE_SMDS_LOADED'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DELIVERY_DATE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_RAW_MATERIAL_AL_G'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DELIVERY_DATE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Delivery date of foam block as yyyy-mm-dd'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'THERMALFOAM_PETAL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DENSITY'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Density in g/cc'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'THERMALFOAM_PETAL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DENSITY'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Density of honeycomb as LBS/FT^3'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HONEYCOMB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'DEPLETION_VOLTAGE'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Mean depletion voltage in V calculated from the averaging of the values from the test structures (or in case of prototypes measured sensors on the wafer)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_WAFER'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DESCRIPTION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'number of internal wires and more description'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DESIGN'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Design version at manufacturer'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ELEC_BREAK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DESIGN'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'The name of the design of bus tape'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'BT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DESIGN_COPPER_THICKNESS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DESY_ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'DESY ID (name that we use)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CORE_PETAL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DETECTORSIDE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'A or C side of ATLAS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EOS'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DETECTORSIDE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'A or C side of ATLAS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EOS_CTC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DETECTORSIDE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'A or C side of ATLAS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EOS_PANEL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DFBDF'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'uunComponentTypeDemoWork'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DICING'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Enter the name of dicing vendor(s)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_WAFER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DIE_COMMENTS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">\"This is a section to add comments for a die's performance.\"</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DIE_INDEX'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Die index to find the AMAC on the wafer map'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DIE_INDEX'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Index of this chip on the Wafer die'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DIE_INDEX'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Index of this chip on the Wafer die'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DRAWING_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Drawing Number of Tool or Assembly'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TOOLS'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'DSC'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'uunComponentTypeDemoWork'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Delivery_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_BARE_LS_ADHESIVE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Delivery_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_Longeron_Inserts'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Delivery_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_PG_TILE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Delivery_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_RAW_MATERIAL_CFRP'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Delivery_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_TITANUIM_TUBE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Delivery_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_Termination_Sleeves'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'EFUSE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'eFuse ID (integer)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'EFUSE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'eFuse ID (integer)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'EFUSEID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'eFuseID as hex string'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'EFUSE_HEX'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'eFuse ID (hex)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'EFUSE_HEX'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'eFuse ID (hex)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ELECTRICAL_BREAK_ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Unique Identifier for Electrical Break'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ELEC_BREAK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'EMPTY_DATE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_RAW_MATERIAL_CFRP'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'ENDCAP_RING_GLUE_WEIGHT'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Weight of glue used for endcap ring (inner and outer) (grams)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'GLUE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'END_CHANNEL_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'END_CONNECTOR_DESCRIPTION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'END_CRATE_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'END_RACK'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'EOS_PANEL_PROP_NCTC'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EOS_PANEL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'EOS_PANEL_PROP_NEOS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EOS_PANEL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'EPOXY_RATIO'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'test test'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EPOXY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'EXPIRATION_DATE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Glue expiration date (yyyy/mm/dd)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'GLUE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'EXPIRATION_DATE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">\"Glue's expiration date\"</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_GLUE_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Empty_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_BARE_LS_ADHESIVE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Expiration_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_BARE_LS_ADHESIVE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Expiration_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_RAW_MATERIAL_CFRP'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'FDVDF'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'uunComponentTypeDemoWork'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'FECHIP_VERSION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'BARE_MODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'FECHIP_VERSION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'FECHIP_VERSION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'FETHICKNESS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Thickness of FE chips used on module in mum'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'FEWF'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'uunComponentTypeDemoWork'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'FIBER_TYPE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Carbon fiber type (fiber orientation/fiber type)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CF_MAT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'FINAL_PROBE_TIMESTAMP'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Timestamp for the final probing, from which data is taken (iso8601)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'FINAL_PROBE_TIMESTAMP'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Timestamp for the final probing, from which data is taken (iso8601)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'FLAVOUR'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OPTOBOARD_TERMINATIONBOARD'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'FLAVOUR'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OPTOBOX_CAN_BUS_CABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'FLAVOUR'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OPTOBOX_POWERBOARD'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'FLAVOUR'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OPTOBOX_POWERBOX'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'FLAVOUR'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TYPE1_SERVICE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'FLAVOUR'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Active optical fibres and number of connectors'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTOBOX_OPTICAL_FAN_OUT'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'FLAVOUR'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Normal or mirrored'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OPTOBOX_CONNECTORBOARD'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'FLAVOUR'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'test'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OPTOBOX'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'FRAME_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Module Frame Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MODULE_FRAME'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'FUNCTION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'DATA_FLEX'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'FUNCTION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'POWER_FLEX'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'FUNCTION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'RIGID_RING'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'FUNCTION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'US_TEST_PIXEL_COMPONENT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'FUSED'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'lpGBT1 fuse status'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EOS'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'GBCR_SERIAl'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'GBCR serial number as printed on chip'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'GBCR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'GLUE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Glue was used on this object'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_BARE_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'GLUE-NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SVEN-TEST-BATCH'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'GLUE-NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SVEN-TEST-REUSABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'GLUE_SYRINGE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Glue Syringe Identifier'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_ASSEMBLY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'GLUE_SYRINGE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Glue Syringe Identifier'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HYBRID_ASSEMBLY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'GLUE_SYRINGE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Glue Syringe Identifier'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'UofT_Star_Hybrid_Assembly_TestClone'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'GRADE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'GRAPHITE_DOPED_GLUE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Graphite doped glue was used on this object'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_BARE_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'GROSS_WT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PREPREG_ROLL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'HCC_GELPACK_CIRCUIT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HCC_GELPACK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'HCC_GELPACK_COUNT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HCC_GELPACK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'HCC_GELPACK_DATE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HCC_GELPACK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'HCC_GELPACK_LOT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HCC_GELPACK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'HCC_GELPACK_QTE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HCC_GELPACK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'HCC_GELPACK_TABLE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HCC_GELPACK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'HC_ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Honeycomb ID(s) (comma separated)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CORE_PETAL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'HEIGHT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_WAFER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'HEIGHT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_WAFER_TEST'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'HEIGHT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'module height in mum'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TESTMODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'HONEYCOMB_MANUFACTURER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Manufacturer and quality level '</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HONEYCOMB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'HONEYCOMB_SET_ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HONEYCOMBSET'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'HONEYCOMB_SET_INFO'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'List of honeycomb (batch) IDs for each sub-parts of a honeycomb set.'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'HONEYCOMBSET'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'HONEYCOMB_SET_MASS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Mass of all parts of honeycomb set'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HONEYCOMBSET'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'HV_TAB_ASSEMBLY_JIG'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Jig used for HV-Tab assembly'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'JJ_TEST_STAR_HYBRID_ASSEMBLY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Hybrid Name, automatically generated'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_ASSEMBLY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Hybrid Name, automatically generated'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HYBRID_ASSEMBLY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_NAME'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Hybrid Name, automatically generated'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'UofT_Star_Hybrid_Assembly_TestClone'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CU_POLYIMIDE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_FLEX_SHEET'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TEST_COMPONENT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TEST_ID'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'UV_GLUE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Fuse ID for the ASIC'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Fuse ID for the ASIC'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_CMOS_Chip_Clone'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Fuse ID for the ASIC'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_TEST'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Fuse ID for the ASIC'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'JJ_ABC_CHIP_TEST_CLONE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Honeycomb ID as \"XXXX-XXXX-YYYY\" (Sample-Lot-Number - BlockNumber)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'HONEYCOMB'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Identifier of the panel.'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PWB_CARRIER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Identifier of the test coupon (panel ID + 0/1).'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PB_TC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Manufacturer wafer ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'FE_WAFER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'VPXnnnnn-Wnnnnn-WFR'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_WAFER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'VPXnnnnn-Wnnnnn-WRT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_W_TEST'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Wafer number-sensor number for the sensor (e.g., VPX32453-W7789)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_S_TEST'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Wafer number-sensor number for the sensor (e.g., WXX32453-1)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Wafer number-sensor number for the sensor (e.g., WXX32453-1)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_Jiayi_CLONE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'[Batch]-[Wafer]-[object type]: VPXNNNNN-WNNNNN-MIM'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_MINI_MD8'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'[Batch]-[Wafer]-[object type]: VPXNNNNN-WNNNNN-MIT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_QAMINI_TEST'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'[Batch]-[Wafer]-[object type]: VPXNNNNN-WNNNNN-TCM'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TESTCHIP_MD8'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'[Batch]-[Wafer]-[object type]: VPXNNNNN-WNNNNN-TCT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_QCHIP_TEST'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'[Batch]-[Wafer]-[object type]: VPXnnnnn-Wnnnnn-HFM'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_HALFMOONS'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'[Batch]-[Wafer]-[object type]: VPXnnnnn-Wnnnnn-HMT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_H_TEST'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'IDPROD'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PROD_SHEET_END'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID_FRAUKE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TEST_FRAUKE_ITEM'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ID_TEST_FRAUKE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TEST_FRAUKE_MATERIAL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'IHEP_Test_ABC130'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'IHEP_Test_ABC130'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'IHEP_Test_CHESS2'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'IHEP_Test_CHESS2'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'IHEP_Test_CHESS2_DaughterCard'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'DaughterCard 2'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'IHEP_Test_CHESS2_DaughterCard'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'IHEP_Test_HCC130'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'IHEP_Test_HCC130'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'IHEP_Test_Module'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'IHEP_Test_Module'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'IMPEDANCE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Impedance of panel, measured by manufacturer'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_FLEX_PANEL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'IREFTRIM_FE1'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'4 bits in string type (e.g. \"1011\")'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'IREFTRIM_FE2'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'4 bits in string type (e.g. \"1011\")'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'IREFTRIM_FE3'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'4 bits in string type (e.g. \"1011\")'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'IREFTRIM_FE4'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'4 bits in string type (e.g. \"1011\")'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'IS_Capillary_ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Inner Diameter of capillary.'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'IS_CAPILLARY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'IS_Capillary_Length'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Length of the capillary.'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'IS_CAPILLARY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'JIAYI-TEST-ALTERNATIEID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'JIAYI-TEST-COMP'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'K_VALUE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'K Value in W/mK'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'THERMALFOAM_PETAL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'KarosTestDummyChipWeight'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Property to record chip weight'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'KarosTestDummyChip'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LABEL'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Label of Sheet'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HV_TAB_SHEET'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LABEL_ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LATER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SVEN-TEST-REUSABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LAYER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Layer number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_BARE_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LAYER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Layer number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_EOS_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LAYER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Layer number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_EVAPORATOR_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LAYER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Layer number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_HALF_SANDWICH'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LAYER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Layer number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_HANDLING_FRAME'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LAYER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Layer number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LAYER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Layer number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_PIGTAIL_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LAYER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Layer number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_TI_PIPE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LAYER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Layer number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_TRANSOPORT_BOX'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LAYER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Layer number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_TYPE_0_TAPE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LAYER_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Layer number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_ELECTRICAL_BREAK_HR_TI_PIPE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'LHEP_SERIAL'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Internal serial number as first proposed by Camilla Tognina'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTOBOARD'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCALNAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCALNAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PETAL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCALNAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PWB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCALNAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'STAVE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCALNAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TEST1'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCALNAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TESTPANEL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCALNAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Local Name used by Institute'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCALNAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Local Name used by institute'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EOS'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCALNAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Local Name used by institute'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EOS_CTC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCALNAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Local Name used by institute'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EOS_PANEL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCAL_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_FLEX'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCAL_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Local Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_TEST_PANEL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCAL_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Local Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MODULE_FRAME'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCAL_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Local Name / Label for Cicorel Card'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CICOREL_CARD'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCAL_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Local Tool Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TOOLS'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCAL_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Local name of blade (BL1, etc)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'BLADE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCAL_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Local name of blade (WH1, etc)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ENDCAP_WHEEL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCAL_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Local name of hybrid assembly'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_ASSEMBLY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCAL_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Local name of hybrid assembly'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HYBRID_ASSEMBLY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCAL_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Local name of hybrid assembly'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'UofT_Star_Hybrid_Assembly_TestClone'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCAL_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Local name to track cooling loop'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'COOLING_LOOP_STAVE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCAL_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Local name to track cooling pipe'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'COOLING_PIPE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCAL_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Local name to track wiglet assembly'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'COOLING_WIGLET_ASM'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCAL_OBJECT_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Local object name given to the ASIC'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCAL_OBJECT_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Local object name given to the ASIC'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_CMOS_Chip_Clone'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCAL_OBJECT_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Local object name given to the ASIC'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_TEST'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCAL_OBJECT_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Local object name given to the ASIC'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'JJ_ABC_CHIP_TEST_CLONE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCATION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Physical location of Endcap'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ENDCAP'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCKINGPOINT_MANUFACTURER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Manufacturer of the locking points'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'LOCKINGPOINT_SET'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOCKINGPOINT_MATERIAL'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Material used to produce locking point'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'LOCKINGPOINT_SET'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOGIC_PASS_NUM'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LOGIC_VITAL_PASS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'If the AMAC passed all the vital logic tests'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'LPGBT_ADDR'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'lpGBT address (in hex) as asserted by pull-up resistors on pads ADDR0-4'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'PIXEL_LPGBT'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'LPGBT_CHIPID'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Stored 4 bytes of the registers 0x000 to 0x003 (in hex)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'PIXEL_LPGBT'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'LPGBT_MASTER'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'True if the lpGBT is configured as a master, false if configured as a slave (for Optoboard V0.x with single lpGBT)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTOBOARD'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'LPGBT_MASTER_ADDRESS'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'The last 4 bits of the I2C address of the lpGBT master.'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTOBOARD'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'LPGBT_SERIAL_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Serial Number printed on the chip'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PIXEL_LPGBT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'LPGBT_SLAVE1_ADDRESS'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'The last 4 bits of the I2C address of the lpGBT slave 2.'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTOBOARD'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'LPGBT_SLAVE2_ADDRESS'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'The last 4 bits of the I2C address of the lpGBT slave 4.'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTOBOARD'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'LPGBT_SLAVE3_ADDRESS'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'The last 4 bits of the I2C address of the lpGBT slave 3.'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTOBOARD'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'LPGBT_USERID'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Efused 4 bytes of the registers 0x004 to 0x007 (in hex)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'PIXEL_LPGBT'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Loop_Type'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'COOLING_LOOP_STAVE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'MAIN_VENDOR'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Enter the number corresponding to the sensor wafer vendor'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TILE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'MAIN_VENDOR'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Enter the number corresponding to the sensor wafer vendor'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_WAFER'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURED_DATETIME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_END_OF_LONGERON_SUPPORT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURED_DATETIME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_LOADED_INCLINED_HALF_RING'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURED_DATETIME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_LOADED_LONGERON'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURED_DATETIME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_LOADED_MODULE_CELL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURED_DATETIME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_PIGTAIL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURED_DATETIME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_TYPE_0_SERVICE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_WB_PROTECTION_ROOF'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TEST_PIPE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Name of Manufacturer'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TESTCARRIER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'The name of the manufacturer'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'BT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'manufacturer of test module'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TESTMODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURER-NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURER-NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TEST1'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURER_ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ID from manufacturer'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TI_TERMINATIONS'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURER_ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ID printed on circuit from manufacturer'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_FLEX'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURER_ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ID printed on circuit from manufacturer'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_FLEX_ARRAY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURER_ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ID printed on circuit from manufacturer'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_FLEX_PANEL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURER_ID'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'ID printed on circuit from manufacturer'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_FLEX_TEST_COUPON'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURER_ID'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Serial number from manufacturer (Petal scheme \"ORDER#-CERTIFICATE#\")'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'TI_TUBE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURING_DATE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Date of manufacture as yyyy-mm-dd'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'THERMALFOAMSET'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURING_DATE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Glue manufacturing date (yyyy/mm/dd)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'GLUE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURING_DATE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Manufactoring date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_GLUE_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MANUFACTURING_DATE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Manufacturing date of honeycomb as \"yyyy-mm-dd\"'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HONEYCOMB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MAN_SNO'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TILE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MAN_SNO'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_WAFER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MASS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Mass of the blade (unit undetermined)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'BLADE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MASS_CF_RING'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Mass CF on outer ring (grams)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EC_RING'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MASS_EPOXY'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Mass epoxy on ring (gram)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EC_RING'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MASS_RING'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Mass of outer ring after cleaning (grams) '</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EC_RING'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MATERIAL_CERTIFICATE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_RAW_MATERIAL_AL_G'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MAX_LDO_FMC_VDDREG'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Maximum bandgap value (at LDO setting of zero)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'MAX_LDO_FMC_VDDREG'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Maximum bandgap value (at LDO setting of zero)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'MAX_LDO_SETTING'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Highest LDO setting at which maximum (plateau) LDO value is reached'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'MAX_LDO_SETTING'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Highest LDO setting at which maximum (plateau) LDO value is reached'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MIXEDFOUNDRYWAFERID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Foundry Wafer ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MWAFER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MIXEDWAFERLOT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Wafer Lot Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MWAFER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MIXEDWAFERNAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Mixed Wafer Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MWAFER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MIXEDWAFERNUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Mixed Wafer Number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MWAFER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MODULE-POSITION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'0-13'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'STAVE-LOADING-BRIDGE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'MODULE_CARRIER_NTIMES'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Number of times the carrier can still be used for parylene coating'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'MODULE_CARRIER'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'MODULE_CARRIER_TYPE'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Type of module carrier, see https://twiki.cern.ch/twiki/bin/view/Atlas/ItkPixModuleCarrier'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'MODULE_CARRIER'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MODULE_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EMILY_TEST_COMPONENT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'MODULE_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Module name, set automatically'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Machining_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_BASE_BLOCK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Machining_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_COOLING_BLOCK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Manufacturer'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PP0IHR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Manufacturer_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_TRUSS'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Manufacturer_Production_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_BARE_LS_ADHESIVE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Manufacturer_Production_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_RAW_MATERIAL_CFRP'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Manufacturing_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_END_OF_LONGERON_BRACKET'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Manufacturing_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_GUSSET'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Manufacturing_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_HALF_RING_SHELL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Manufacturing_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_IHR_PIPE_STRAIN_RELIEF'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Manufacturing_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_PIPE_SUPPORT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Material_Certificate'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_Longeron_Inserts'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Material_Certificate'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_RAW_MATERIAL_CFRP'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Material_Certificate'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_TITANUIM_TUBE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Material_Certificate'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_Termination_Sleeves'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Michael_HCC_Gelpak_name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Michael_HCC_Gelpak'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Michael_HCC_Gelpak_quantity'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Michael_HCC_Gelpak'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Michael_HCC_failed_ASICs_die'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Michael_HCC_Failed_ASICs'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Michael_HCC_failed_ASICs_wafer'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Michael_HCC_Failed_ASICs'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Michael_HCC_failed_ASICs_weight'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Michael_HCC_Failed_ASICs'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Mould_Identifier'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_END_OF_LONGERON_BRACKET'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Mould_Identifier'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_GUSSET'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Mould_Identifier'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_HALF_RING_SHELL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Mould_Identifier'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_IHR_PIPE_STRAIN_RELIEF'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Mould_Identifier'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_PIPE_SUPPORT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Mould_Identifier'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_TRUSS'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SVEN-TEST-ASSEMBLY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SVEN-TEST-MATERIAL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SVEN-TEST-REUSABLE-2'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SVEN-ITEM-2'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SVEN-TEST-ITEM'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Name of Outer ring (OR1, OR2, etc)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EC_RING'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NAME1 '</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Space in the Code'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TEST_COMPONENT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NAME1 '</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Testing spaces'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TEST_STAGES'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NAME2'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Space in the Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TEST_COMPONENT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NAME2'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Testing spaces'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TEST_STAGES'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'NAME_OF_ROSE'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Additional name, added after the object creation'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TEST_COMPONENT'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NET_QTY'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PREPREG_ROLL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NET_WT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PREPREG_ROLL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NO_CYCLES'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Number of cycles for assembled modules'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MODULE_FRAME'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NO_CYCLES'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Number of cycles for hybrids being assembled.'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_TEST_PANEL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NO_PIPES'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TEST_PIPES'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCPB_R_INTERNAL'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCPB_SW_0_OHMS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCPB_SW_1_OHMS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCPB_SW_2_OHMS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCPB_SW_4_OHMS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCPB_SW_6_OHMS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCPB_V_ZERO'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCX_R_INTERNAL'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCX_SW_0_OHMS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCX_SW_1_OHMS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCX_SW_2_OHMS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCX_SW_4_OHMS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCX_SW_6_OHMS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCX_V_ZERO'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCY_R_INTERNAL'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCY_SW_0_OHMS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCY_SW_1_OHMS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCY_SW_2_OHMS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCY_SW_4_OHMS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCY_SW_6_OHMS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NTCY_V_ZERO'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PB_FLEX_ARRAY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TESTPANEL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBERS_OF_RODS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_RAW_MATERIAL_AL_G'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBER_DISCARDED'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Number of lengths discarded due to quality or other issues. Enter manually to ensure Number of lengths remaining is calculated correctly.'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'TI_TUBE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBER_DISCARDED'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Number of termination discarded. Enter manually to ensure the number remaining is calculated correctly.'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'TI_TERMINATIONS'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBER_OF_INSERTS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_Longeron_Inserts'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBER_OF_LENGTHS'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Total number of cooling pipes that can be made from this set of tubes'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'TI_TUBE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBER_OF_OPTOBOARDS'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Indicate the number of Optoboards hosted by the Optobox'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTOBOX'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBER_OF_PIPES'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_TITANUIM_TUBE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBER_OF_SHEETS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Number of sheets from block'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HONEYCOMB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBER_OF_SLEEVES'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_Termination_Sleeves'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBER_OF_UNITS'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Original number of termination pieces in the box'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'TI_TERMINATIONS'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBER_REFLOW_CYCLES'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Total number of reflow cycles'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_FLEX_TEST_COUPON'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBER_REMAINING'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Estimated number of cooling pipes that can be made from tubes remaining (to be updated automatically as cooling pipes are registered)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'TI_TUBE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBER_REMAINING'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Number of termination pieces remaining in the box - not used or discarded. To be calculated automatically.'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'TI_TERMINATIONS'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBER_TABS_FOR_OTHER'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Number of Tabs used for other things (failed, shear test, ...)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'HV_TAB_SHEET'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBER_UPDATE'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'The date and time the script to calculate Number of lengths used and Number remaining was last run.'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'TI_TUBE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBER_UPDATE'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'The date and time the script to calculate Number of units used and Number remaining was last run.'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'TI_TERMINATIONS'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBER_USED'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Number of lengths that have been used to make cooling pipes. Set by script.'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'TI_TUBE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBER_USED'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Number of termination used. To be set by script.'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TI_TERMINATIONS'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMBER_lpGBTS_MOUNTED'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OPTOBOARD'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'NUMMBER_TABS_FOR_MODULES'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Number of Tabs used for Modules'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HV_TAB_SHEET'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'N_PROBE_ATTEMPTS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Number of times this chip was probed'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'N_PROBE_ATTEMPTS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Number of times this chip was probed'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'OBLIGATORY_EULOGY'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'The farewell text to be entered'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TEST_COMPONENT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'OD_COC'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Outer diamater as in certificate of conformance [mm]'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TI_TUBE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'OPENING_DATE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Glue opening date (yyyy/mm/dd)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'GLUE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'OPENING_DATE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">\"Glue's opening date\"</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_GLUE_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTIMAL_GAIN_INTERCEPT'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Measured intercept (counts) of optimal gain setting, as seen during probing'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTIMAL_GAIN_INTERCEPT'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Measured intercept (counts) of optimal gain setting, as seen during probing'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTIMAL_GAIN_REDUCEDCHI2'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Reduced Chi2 of linear fit for optimal LDO setting, as seen during probing'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTIMAL_GAIN_REDUCEDCHI2'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Reduced Chi2 of linear fit for optimal LDO setting, as seen during probing'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTIMAL_GAIN_SETTING'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Chip setting to get optimal gain (1 count per mV), as seen during probing'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTIMAL_GAIN_SETTING'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Chip setting to get optimal gain (1 count per mV), as seen during probing'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTIMAL_GAIN_SLOPE'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Measured slope (counts/V) of optimal gain setting, as seen during probing'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTIMAL_GAIN_SLOPE'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Measured slope (counts/V) of optimal gain setting, as seen during probing'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTIMAL_LDO_FMC_VDDRAW'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Raw voltage when deriving optimal LDO setting, as seen during probing'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTIMAL_LDO_FMC_VDDRAW'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Raw voltage when deriving optimal LDO setting, as seen during probing'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTIMAL_LDO_FMC_VDDREG'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Voltage of optimal LDO setting, as seen during probing'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTIMAL_LDO_FMC_VDDREG'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Voltage of optimal LDO setting, as seen during probing'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTIMAL_LDO_SETTING'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Chip LDO setting for optimal voltage (1.2V), as seen during probing'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTIMAL_LDO_SETTING'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Chip LDO setting for optimal voltage (1.2V), as seen during probing'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTOBOARD_VERSION_NUMBER'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Indicate the version of the Optoboard design (V0.0, V1.1, V2.0, V2.1 or V3.0)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OPTOBOARD'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ORIENTATION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Normal/Upside-down (Normal=True,Upside down=False)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'OUTPUT_DIR'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Opening_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_BARE_LS_ADHESIVE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Opening_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_RAW_MATERIAL_CFRP'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Operator_Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_BARE_MODULE_CELL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Operator_Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_END_OF_LONGERON_BRACKET'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Operator_Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_FUNCTIONAL_IHR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Operator_Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_FUNCTIONAL_LONGERON'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Operator_Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_FUNCTIONAL_PIPE_LONGERON'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Operator_Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_GUSSET'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Operator_Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_HALF_RING_SHELL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Operator_Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_LONGERON_COMPOSITE_STRUCTURE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Operator_Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_PIPE_SUPPORT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Operator_Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_TRUSS'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PACKAGE_DATE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_BARE_MODULE_CELL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PANEL_MANUFACTURER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PANEL_MANUFACTURER_BATCH_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PANEL_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Panel Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_TEST_PANEL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PANEL_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PAPER_WT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PREPREG_ROLL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART-NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Uniq number for the component'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_COOLING_PIPE_LONGERON'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_BARE_MODULE_CELL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_END_OF_LONGERON_BRACKET'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_END_OF_LONGERON_SUPPORT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_FUNCTIONAL_IHR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_FUNCTIONAL_LONGERON'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_FUNCTIONAL_PIPE_LONGERON'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_GUSSET'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_HALF_RING_SHELL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_LOADED_INCLINED_HALF_RING'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_LOADED_LONGERON'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_LOADED_MODULE_CELL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_LONGERON_COMPOSITE_STRUCTURE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_LONGERON_HF'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_PG_TILE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_PIGTAIL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_PIPE_SUPPORT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_TRUSS'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_TYPE_0_SERVICE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Alternative ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_ELECTRICAL_BREAK_HR_TI_PIPE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Alternative ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_EOS_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Alternative ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_EVAPORATOR_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Alternative ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_HALF_SANDWICH'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Alternative ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_HANDLING_FRAME'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Alternative ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_INSTERT_RIM_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Alternative ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_PIGTAIL_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Alternative ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_TI_PIPE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Alternative ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_TRANSOPORT_BOX'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Alternative ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_TYPE_0_TAPE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Human readable component code'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_BARE_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Human readable component code'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Uniq number for the component'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_Cooling_pipe_IHR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'should be unique'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_BASE_BLOCK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PART_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'unique #'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_COOLING_BLOCK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PASS_ANALOG'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'If chip passed analog tests during probing'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PASS_ANALOG'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'If chip passed analog tests during probing'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PASS_DIGITAL'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'If chip passed digital readout tests during probing'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'PASS_DIGITAL'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'If chip passed digital readout tests during probing'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PASS_POWER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'If chip passed power tests during probing'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PASS_POWER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'If chip passed power tests during probing'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PB_NUMBWE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PWB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PB_NUMBWE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Powerboard number etched on the shield box.'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PWB_SHIELDBOX'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'PICKUP-TOOL'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'needs update when new pickup tools are installed'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'STAVE-LOADING-BRIDGE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'PICK_AND_PLACE_MACHINE'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Used Pick and Place Machine for ASIC assembly'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_ASSEMBLY'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'PICK_AND_PLACE_MACHINE'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Used Pick and Place Machine for ASIC assembly'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HYBRID_ASSEMBLY'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'PICK_AND_PLACE_MACHINE'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Used Pick and Place Machine for ASIC assembly'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'UofT_Star_Hybrid_Assembly_TestClone'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PIPE_BATCH_ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TEST_PIPE_BATCH'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PIPE_MANUFACTURER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TEST_PIPE_BATCH'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'POSITION_IN_EC'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Position in End-Cap structure, numbering from interaction point to outside (unique in each EC, from 1 to 6)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'EC_RING'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'POSITION_ON_WHEEL'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Blade position on wheel - Fixed position (1 to 8) - If unknown choose 0. Start counting first blade from 12 o clock, and clockwise to reach postion 8'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'BLADE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'POST_CREATION_DATUM'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'a test property for verifying the ability to add them after the objects have been created'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_S_TEST'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PP0_FLAT_MANUFACTURER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Name of the maufacturer'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PP0_FLAT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PPO_FLAT_OPERATOR'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Name of the operator'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PP0_FLAT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PREPREG_EXPDATE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PREPREG_ROLL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PREPREG_ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PREPREG_ROLL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PREPREG_ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Identifier of used prepreg material roll'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'BT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'PREPREP_LOG'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Writing the times in and out storage (room temperature)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'PREPREG_ROLL'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'PRINTED_SERIAL_NUMBER'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Printed / Engraved Serial Number of Tool (if in use)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'TOOLS'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PROBE_LOCATION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Location where probing occured'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PROBE_LOCATION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Location where probing occured'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PRODDATE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Production date of outer ring (dd-mm-yyyy)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EC_RING'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PRODUCTIONSTAGE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ProductionStage'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PRODUCTION_TYPE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Production Type'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_BARE_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PRODUCTION_TYPE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Production Type'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_ELECTRICAL_BREAK_HR_TI_PIPE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PRODUCTION_TYPE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Production Type'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_EOS_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PRODUCTION_TYPE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Production Type'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_EVAPORATOR_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PRODUCTION_TYPE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Production Type'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_HALF_SANDWICH'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PRODUCTION_TYPE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Production Type'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_HANDLING_FRAME'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PRODUCTION_TYPE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Production Type'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PRODUCTION_TYPE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Production Type'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_PIGTAIL_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PRODUCTION_TYPE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Production Type'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_TI_PIPE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PRODUCTION_TYPE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Production Type'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_TRANSOPORT_BOX'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PRODUCTION_TYPE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Production Type'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_TYPE_0_TAPE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PRODUCT_CODE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Product code e.g. UCF-328-1/4-3.0'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HONEYCOMB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PROD_SERIAL_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'DATA_FLEX'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PROD_SERIAL_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'POWER_FLEX'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PROD_SERIAL_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'RIGID_RING'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PROPERTY_0'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'BENCHMARK'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PROPERTY_WEIGHT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'DEMO'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PROP_FRAUKE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'blubb'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TEST_FRAUKE_ASSEMBLY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PSPP_PACKAGED_LN'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'local name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PSPP_PACKAGED'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'PSPP_PACKAGED_SUPPLIER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Name of the package manufacturer'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PSPP_PACKAGED'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Package_Date'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_PG_TILE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Part_Number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_IHR_PIPE_STRAIN_RELIEF'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'QUALITY'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Quality flag for the chip, with 0=failed, 1=passed, and 2+ being various levels of acceptable'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'QUALITY'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Quality flag for the chip, with 0=failed, 1=passed, and 2+ being various levels of acceptable'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'QWE'</span>, <span style=\"color: #800080; text-decoration-color: #800080; font-style: italic\">None</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_WAFER_CLONE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'QWEQQ'</span>, <span style=\"color: #800080; text-decoration-color: #800080; font-style: italic\">None</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_WAFER_CLONE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'QWES'</span>, <span style=\"color: #800080; text-decoration-color: #800080; font-style: italic\">None</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_WAFER_CLONE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Quantity'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_BARE_LS_ADHESIVE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Quantity'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_RAW_MATERIAL_CFRP'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'RATIO_EPOXY'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Ratio: epoxy (grams) divided by hardener (grams)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EC_RING'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'RAW_DATA_LINK'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Under this link you can find the raw binary and yaml files for the given wafer.'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'FE_WAFER'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'RD53A_PULL-UP_RESISTOR1'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'RD53A_PULL-UP_RESISTOR2'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'RD53A_PULL-UP_RESISTOR3'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'RD53A_PULL-UP_RESISTOR4'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'RECEPTION_DATE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Date the sensor was received from HPK'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TEST_STAGES'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'RFID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'RFID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TEST1'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'RFID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TESTPANEL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'RFID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'RFID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_TEST_PANEL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'RFID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'RFID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MODULE_FRAME'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'RFID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'RFID (read from test-stand 1)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EOS'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'RFID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'RFID Tag Value'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID_FLEX'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'RFID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Tool RFID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TOOLS'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ROOF'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Wirebond protection roof'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ROW'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'The number of the row'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CYLINDER_ROW'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_SCRATCHID'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Scratch id (to be used if not the same as agreed manufacturer ID)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TILE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TYPE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'BARE_MODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TYPE_OR_TEST_STRUCTURE'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Enter the number of the corresponding sensor type (0-3) or test structure (4-9) '</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TILE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_WAFER_INGOT_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Wafer ingot number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_WAFER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_WAFER_INGOT_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Wafer ingot number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_W_TEST'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SHIFTER_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_END_OF_LONGERON_SUPPORT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SHIFTER_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_INCLINED_HALF_RING_HF'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SHIFTER_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_INSERTS'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SHIFTER_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_LOADED_INCLINED_HALF_RING'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SHIFTER_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_LOADED_LONGERON'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SHIFTER_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_LOADED_MODULE_CELL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SHIFTER_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_LOADING_ADHESIVE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SHIFTER_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_LONGERON_HF'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SHIFTER_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_PIGTAIL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SHIFTER_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_TYPE_0_SERVICE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SHIFTER_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Shifter Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_INSTERT_RIM_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'SIGMA_VDEPL'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'1 sigma uncertainty value of the measurement of the depletion voltage'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_WAFER'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SIZE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Size of foam block, e.g. 12\"x12\"x1\"'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'THERMALFOAM_PETAL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SMD_HV_CAP_MANUFACTURER_SERIAL_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SMD_HV_CAP_NOMINAL_VALUE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SMD_HV_CAP_TOLERANCE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SMD_NTC_MANUFACTURER_SERIAL_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SMD_NTC_NOMINAL_VALUE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SMD_NTC_TOLERANCE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SMD_POPULATION_BATCH_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SMD_POPULATION_VENDOR'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SMD_SLDO_RESISTOR_R111_MANUFACTURER_SERIAL_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SMD_SLDO_RESISTOR_R111_NOMINAL_VALUE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SMD_SLDO_RESISTOR_R111_TOLERANCE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SMD_SLDO_RESISTOR_R112_MANUFACTURER_SERIAL_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SMD_SLDO_RESISTOR_R112_NOMINAL_VALUE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SMD_SLDO_RESISTOR_R112_TOLERANCE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SOURCE_DIR'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'STANDARD_FIELD'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'START_CHANNEL_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'START_CONNECTOR_DESCRIPTION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'START_CRATE_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'START_RACK'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'STRIP_THICKNESS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'FOAM'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'STRIP_WIDTH'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'FOAM'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SUMMARY_CSV_DIR'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SUPER_COOL_STRING'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'KKTESTPANEL1'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'SUPPLIER_REFERENCE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_RAW_MATERIAL_AL_G'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ShifterName'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PP0IHR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Site_Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_BARE_LS_ADHESIVE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Supplier_Batch_Reference'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_PG_TILE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Supplier_Reference'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_BARE_LS_ADHESIVE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Supplier_Reference'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_Longeron_Inserts'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Supplier_Reference'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_RAW_MATERIAL_CFRP'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Supplier_Reference'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_TITANUIM_TUBE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Supplier_Reference'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OB_Termination_Sleeves'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'TEMPTEST'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'BLADE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'TEST_CODE_TABLE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">\"Let's test this code table structure\"</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TEST_COMPONENT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'TEST_PROPERTY'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Test'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TEST_FRAUKE_LOT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'TF_BLOCKID'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'ID(s) of used thermal foam block as comma separated list'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'THERMALFOAMSET'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'THERMALFOAM_ID'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'ID of foam block as YYYYMMDD-LOT no-SNyy, e.g. 20170728-07-SN17'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'THERMALFOAM_PETAL'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'THICKNESS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'BARE_MODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'THICKNESS'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'MODULE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'TITANIUMTERMINATIONID'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'CoC Number relating to the Titanium Termination'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'COOLING_WIGLET_ASM'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'TITANIUM_ID'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">\"Manufacturer's ID for the Titanium Tube material used to make this pipe\"</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'COOLING_PIPE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'TJRJ'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'uunComponentTypeDemoWork'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'TRY_NUM'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Number of times probed at Penn'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'TYPE_PROPERTY'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'COOLING_WIGLET_ASM'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'TYPE_PROPERTY'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Type number property, it is assigned to the first N digit of the serial number.'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Pixel_test_component'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'TYPE_PROPERTY'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Type of Pipe being registered'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'COOLING_PIPE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'UBM'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Enter the name of the UBM vendor(s)'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_WAFER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'UNIQUE-ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'FLEX-TEST-COUPON'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'UNIQUE-ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Unique Array ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HYBRID-FLEX-ARRAY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'UNIQUEID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Unique ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EOS_PANEL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'UNIQUEID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Unique ID for the CTC Card'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EOS_CTC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'UNIQUEID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Unique ID for the EoS Cards'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'EOS'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'USER_FIELD'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'CABLE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'USER_ID_MASTER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OPTOBOARD'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'VENDOR'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Enter the number corresponding to the sensor wafer vendor'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'TEST-WAFER-SIMON'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'VENDOR'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Vendor code used for (pre-)production. In the moment to be compatible with RD53A we keep Thickness of FE chips alive'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'BARE_MODULE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'VENDOR'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'vendor name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TESTCHIPMONIKA'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'VENDOR'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'vendor name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TESTWAFER_MONIKA'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'VENDOR_BATCH_NUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_ELECTRICAL_BREAK_HR_TI_PIPE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'VENDOR_BATCH_NUMBER'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Vendor batch number linked to a batch with the spreadsheet'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'OEC_TI_PIPE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'VENDOR_ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'TEST_PIPES'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'VERSION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'VERSION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC_TESTING_IMPORT'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'VERSION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PB_FLEX_ARRAY'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'VERSION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PWB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'VERSION'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Is the component for prototype, pre-production or production'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TILE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'VERSION'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Is the component for prototype, pre-production or production'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_WAFER'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'VERSION'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Powerboard design version etched on the shield box.'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PWB_SHIELDBOX'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'VERSION_OF_HYBRID_DESIGN'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PCB'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'VOLUME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">\"Glue's container volume\"</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'OEC_GLUE_HR'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'WAFERABCSTARV1'</span>, <span style=\"color: #800080; text-decoration-color: #800080; font-style: italic\">None</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ABC_WAFER_CLONE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'WAFERNAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Wafer Name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC_WAFER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'WAFERNUMBER'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Index of Wafer carrying this AMAC'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'WAFERSN'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'wafer name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'FE_CHIP'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'WAFER_BUMP_BATCH'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Wafer bump batch number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'FE_WAFER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'WAFER_BUMP_DATE'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'FE_WAFER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'WAFER_BUMP_VENDOR'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Name of wafer bump vendor'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'FE_WAFER'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'WAFER_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Name of Wafer carrying this AMAC'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'WAFER_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Wafer Identifier Code'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'WAFER_NAME'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Wafer Identifier Code'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'WAFER_POSITION_LABEL'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Description of the piece position on the wafer, e.g. SS_mini_1, mini_7, MD8_2, A2, M1 (last 2 for the QA pieces)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_MINI_MD8'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'WAFER_POSITION_LABEL'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Description of the piece position on the wafer, e.g. SS_mini_1, mini_7, MD8_2, A2, M1 (last 2 for the QA pieces)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_QAMINI_TEST'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'WAFER_POSITION_LABEL'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Description of the piece position on the wafer, e.g. SS_mini_1, mini_7, MD8_2, A2, M1 (last 2 for the QA pieces)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_QCHIP_TEST'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'WAFER_POSITION_LABEL'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Description of the piece position on the wafer, e.g. SS_mini_1, mini_7, MD8_2, A2, M1 (last 2 for the QA pieces)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'SENSOR_TESTCHIP_MD8'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'WAFER_POS_X'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Physical X position of this chip on the wafer die (uncalibrated microns)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'WAFER_POS_X'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Physical X position of this chip on the wafer die (uncalibrated microns)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'WAFER_POS_Y'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Physical Y position of this chip on the wafer die (uncalibrated microns)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'HCC'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'WAFER_POS_Y'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Physical Y position of this chip on the wafer die (uncalibrated microns)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'JJ_HCC_CHIP_TEST_CLONE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'WALL_THICKNESS_COC'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Wall thickness as in certificate of conformance [mm]'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'TI_TUBE'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'WEIGHT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'final weight of Stave'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'STAVE'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'WEIGHT'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'final weight of loaded petal'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'PETAL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'WELDING_REPORT_ID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'ID number of welding report'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'COOLING_LOOP_PETAL'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'WHEEL_POSITION'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Position of wheel inside of Endcap (1 to 6 or spare)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'ENDCAP_WHEEL'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'William_ABCStar_failed_ASICs_die'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'William_ABCStar_failed_ASICs'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'William_ABCStar_failed_ASICs_wafer'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'William_ABCStar_failed_ASICs'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'William_ABCStar_failed_ASICs_weight'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'William_ABCStar_failed_ASICs'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'William_ABCstar_failed_ASICs_AlternativeID'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'William_ABCStar_failed_ASICs'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Williams_ABC_gelpak_name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Williams_ABC_gelpak'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'Williams_ABC_gelpak_quantity'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Williams_ABC_gelpak'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'X_POS'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'x position relative to first die (upper-left corner) with Wafer Notch on Left (microns)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Y_POS'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'y position relative to first die (upper-left corner) with Wafer Notch on Left (microns)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'AMAC'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'batch_name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'batch name'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'test_material'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'demo1'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'weight'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'00000001'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'fabrik_id'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Beta_DEAA'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'gmcm'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'uunComponentTypeDemoWork'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'gnf'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'uunComponentTypeDemoWork'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'hyb-demo1'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Weight'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Hyb-demo1HH'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'hyb-demo2'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'size'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'Hyb-demo1HH'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'jgh'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">''</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'uunComponentTypeDemoWork'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'ktk'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'kytk'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'uunComponentTypeDemoWork'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'lpGBT_TRANSCEIVER_MODE'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'Boolean if lpGBT is in transceiver mode (corresponds to a Optoboard master lpGBT)'</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ │ </span><span style=\"color: #008000; text-decoration-color: #008000\">'PIXEL_LPGBT'</span>\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'n_used'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'number of times used'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'test_carrier_monika'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'rjher'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'herh'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'uunComponentTypeDemoWork'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'vendor'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'vendor'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'test_module_monika'</span><span style=\"font-weight: bold\">)</span>,\n",
"<span style=\"color: #7fbf7f; text-decoration-color: #7fbf7f\">│ </span><span style=\"font-weight: bold\">(</span><span style=\"color: #008000; text-decoration-color: #008000\">'vendro-id'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'vendor id number'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'test_glue'</span><span style=\"font-weight: bold\">)</span>\n",
"<span style=\"font-weight: bold\">]</span>\n",
"</pre>\n"
],
"text/plain": [
"\u001b[1m[\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'123456789'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'123456789'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'2ND_ID'\u001b[0m, \u001b[32m'the backup identification'\u001b[0m, \u001b[32m'SENSOR_TEST_COMPONENT'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ABC130'\u001b[0m, \u001b[3;35mNone\u001b[0m, \u001b[32m'ABC_WAFER_CLONE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ABCSTAR'\u001b[0m, \u001b[3;35mNone\u001b[0m, \u001b[32m'ABC_WAFER_CLONE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ABCWAFERFOUNDRYWAFERID'\u001b[0m, \u001b[32m'Foundry Wafer ID'\u001b[0m, \u001b[32m'ABC_WAFER'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ABCWAFERLOTNAME'\u001b[0m, \u001b[32m'ABC Wafer Lot Name'\u001b[0m, \u001b[32m'ABC_WAFER'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ABCWAFERNAME'\u001b[0m, \u001b[32m'ABC wafer name'\u001b[0m, \u001b[32m'ABC_WAFER'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ABCWAFERNAME'\u001b[0m, \u001b[32m'ABC wafer name'\u001b[0m, \u001b[32m'ABC_WAFER_TEST'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ABCWAFERNUMBER'\u001b[0m, \u001b[32m'ABC Wafer Number'\u001b[0m, \u001b[32m'ABC_WAFER'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ABC_GELPACK_CIRCUIT'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'ABC_GELPACK'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ABC_GELPACK_COUNT'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'ABC_GELPACK'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ABC_GELPACK_DATE'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'ABC_GELPACK'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ABC_GELPACK_LOT'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'ABC_GELPACK'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ABC_GELPACK_QTE'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'ABC_GELPACK'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ABC_GELPACK_TABLE'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'ABC_GELPACK'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ADDED_NAME2'\u001b[0m, \u001b[32m'Name added after the object definition'\u001b[0m, \u001b[32m'SENSOR_TEST_COMPONENT'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ADD_VAR1'\u001b[0m, \u001b[32m'Name added after the object definition'\u001b[0m, \u001b[32m'SENSOR_TEST_COMPONENT'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'AMACNUMBER'\u001b[0m, \u001b[32m'The same as die_index'\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'AMAC_EFUSE'\u001b[0m, \u001b[32m'The burned in eFuse'\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'AMAC_GELPACK_CIRCUIT'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC_GELPACK'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'AMAC_GELPACK_COUNT'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC_GELPACK'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'AMAC_GELPACK_DATE'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC_GELPACK'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'AMAC_GELPACK_LOT'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC_GELPACK'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'AMAC_GELPACK_QTE'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC_GELPACK'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'AMAC_GELPACK_TABLE'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC_GELPACK'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'AM_SLOPE'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ANALOG_PASS_NUM'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ANALOG_VITAL_PASS'\u001b[0m, \u001b[32m'If the AMAC passed all the vital analog tests'\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ASSEMBLY_CHIPTRAY'\u001b[0m, \u001b[32m'Chip Tray for ASIC assembly'\u001b[0m, \u001b[32m'HYBRID_ASSEMBLY'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ASSEMBLY_CHIPTRAY'\u001b[0m, \u001b[32m'Chip Tray for ASIC assembly'\u001b[0m, \u001b[32m'JJ_HYBRID_ASSEMBLY'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'ASSEMBLY_CHIPTRAY'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'Chip Tray for ASIC assembly'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'UofT_Star_Hybrid_Assembly_TestClone'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ASSEMBLY_JIG'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'JJ_TEST_STAR_HYBRID_ASSEMBLY'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ASSEMBLY_JIG'\u001b[0m, \u001b[32m'Jig for ASIC assembly'\u001b[0m, \u001b[32m'HYBRID_ASSEMBLY'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ASSEMBLY_JIG'\u001b[0m, \u001b[32m'Jig for ASIC assembly'\u001b[0m, \u001b[32m'JJ_HYBRID_ASSEMBLY'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ASSEMBLY_JIG'\u001b[0m, \u001b[32m'Jig for ASIC assembly'\u001b[0m, \u001b[32m'UofT_Star_Hybrid_Assembly_TestClone'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ASSEMBLY_PICKUP_TOOL'\u001b[0m, \u001b[32m'Pick-Up Tool for ASIC assembly'\u001b[0m, \u001b[32m'HYBRID_ASSEMBLY'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ASSEMBLY_PICKUP_TOOL'\u001b[0m, \u001b[32m'Pick-Up Tool for ASIC assembly'\u001b[0m, \u001b[32m'JJ_HYBRID_ASSEMBLY'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'ASSEMBLY_PICKUP_TOOL'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'Pick-Up Tool for ASIC assembly'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'UofT_Star_Hybrid_Assembly_TestClone'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ATESTTT'\u001b[0m, \u001b[32m'testtest'\u001b[0m, \u001b[32m'ABTEST'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'Assembly_Date'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_BARE_MODULE_CELL'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'Assembly_Date'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_FUNCTIONAL_IHR'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'Assembly_Date'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_FUNCTIONAL_LONGERON'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'Assembly_Date'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_FUNCTIONAL_PIPE_LONGERON'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'Assembly_Date'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_LONGERON_COMPOSITE_STRUCTURE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'Assembly_Tool_Identified'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_BARE_MODULE_CELL'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'Assembly_Tool_Position'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_BARE_MODULE_CELL'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'FOAM'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'PB_FLEX_ARRAY'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'PWB'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'TESTPANEL'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH'\u001b[0m, \u001b[32m'Batch number etched on the shield box.'\u001b[0m, \u001b[32m'PWB_SHIELDBOX'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH'\u001b[0m, \u001b[32m'Date when the item was received.'\u001b[0m, \u001b[32m'PWB_LINPOL'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH-ID'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'SENSOR_GLUE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH_ID'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'TEST_PIPE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH_NUMBER'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_LOADING_ADHESIVE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH_NUMBER'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_Longeron_Inserts'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH_NUMBER'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_RAW_MATERIAL_AL_G'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH_NUMBER'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_WB_PROTECTION_ROOF'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH_NUMBER'\u001b[0m, \u001b[32m' Batch Number'\u001b[0m, \u001b[32m'OEC_PIPE_CLOSEOUT_HR'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH_NUMBER'\u001b[0m, \u001b[32m'Batch # by manufacture'\u001b[0m, \u001b[32m'OB_INSERTS'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH_NUMBER'\u001b[0m, \u001b[32m'Batch # from manufacture'\u001b[0m, \u001b[32m'OB_TITANUIM_TUBE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH_NUMBER'\u001b[0m, \u001b[32m'Batch Number'\u001b[0m, \u001b[32m'OEC_PRE_PREG_HR'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH_NUMBER'\u001b[0m, \u001b[32m'Batch number'\u001b[0m, \u001b[32m'OEC_CARBON_FIBRE_VEIL_HR'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH_NUMBER'\u001b[0m, \u001b[32m'Batch number'\u001b[0m, \u001b[32m'OEC_CARBON_FOAM_TRAPEZOIDS_HR'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH_NUMBER'\u001b[0m, \u001b[32m'Batch number'\u001b[0m, \u001b[32m'OEC_FOAM_BLOCKS'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH_NUMBER'\u001b[0m, \u001b[32m'Batch number'\u001b[0m, \u001b[32m'OEC_GLUE_HR'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH_NUMBER'\u001b[0m, \u001b[32m'Batch number'\u001b[0m, \u001b[32m'OEC_GRAPHITE_DOPED_GLUE_HR'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH_NUMBER'\u001b[0m, \u001b[32m'Batch number'\u001b[0m, \u001b[32m'OEC_GRAPHITE_POWDER_HR'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH_NUMBER'\u001b[0m, \u001b[32m'Batch number'\u001b[0m, \u001b[32m'OEC_INSTERT_RIM_HR'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH_NUMBER'\u001b[0m, \u001b[32m'Batch number'\u001b[0m, \u001b[32m'OEC_LOADING_ADHESIVE_HR'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH_NUMBER'\u001b[0m, \u001b[32m'Batch number'\u001b[0m, \u001b[32m'OEC_MOUNTING_LUG_HR'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BATCH_WAFER_NO'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'SENSOR_TEST_STAGES'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BENDING_RADIUS'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'CABLE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BJG_PROP_1'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'BJG_TEST_COMP'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BLOCK_SIZE'\u001b[0m, \u001b[32m'Size of the block e.g. 635x368.3x5.5'\u001b[0m, \u001b[32m'HONEYCOMB'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BORING_STRING_0'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'KKTESTITEM1'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BORING_STRING_1'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'KKTESTITEM1'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BORING_STRING_2'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'KKTESTITEM1'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BORING_STRING_3'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'KKTESTITEM1'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BORING_STRING_4'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'KKTESTITEM1'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BORING_STRING_5'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'KKTESTITEM1'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BORING_STRING_6'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'KKTESTITEM1'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BORING_STRING_7'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'KKTESTITEM1'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'BORING_STRING_8'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'KKTESTITEM1'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'Batch_number'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_Termination_Sleeves'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CABLE_DIAMETER'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'CABLE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CABLE_LENGTH'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'CABLE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CALIBRATED'\u001b[0m, \u001b[32m'has rotation calibration been done'\u001b[0m, \u001b[32m'STAVE-LOADING-BRIDGE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'CF_SOURCE_LOCATION'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'Location/website/company the CF was manufactured / bought from '\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'CF_MAT'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CH0_ZERO_CALIB'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CH10_ZERO_CALIB'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CH11_ZERO_CALIB'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CH12_ZERO_CALIB'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CH13_ZERO_CALIB'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CH14_ZERO_CALIB'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CH15_ZERO_CALIB'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CH1_ZERO_CALIB'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CH2_ZERO_CALIB'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CH3_ZERO_CALIB'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CH4_ZERO_CALIB'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CH5_ZERO_CALIB'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CH6_ZERO_CALIB'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CH7_ZERO_CALIB'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CH8_ZERO_CALIB'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CH9_ZERO_CALIB'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CLOSEOUT_ID'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'CLOSEOUT'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CLOSEOUT_QUANTITY'\u001b[0m, \u001b[32m'Remaining quantity'\u001b[0m, \u001b[32m'CLOSEOUT'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CLOSEOUT_SET_ID'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'CLOSEOUT_SET'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'CLOSEOUT_SET_INFO'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'List of closeout \u001b[0m\u001b[32m(\u001b[0m\u001b[32mbatch\u001b[0m\u001b[32m)\u001b[0m\u001b[32m IDs for each sub-part of closeout set'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'CLOSEOUT_SET'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CLOSEOUT_SET_MASS'\u001b[0m, \u001b[32m'Mass of all parts of closeout set'\u001b[0m, \u001b[32m'CLOSEOUT_SET'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CNCPROGRAMID'\u001b[0m, \u001b[32m'CNC program identifier'\u001b[0m, \u001b[32m'THERMALFOAMSET'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'COC'\u001b[0m, \u001b[32m'Uploaded pdf'\u001b[0m, \u001b[32m'TEST_FRAUKE_ITEM'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'COLOR'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'CABLE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'COMMUNICATION_GOOD'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CONNECTION_IN'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'DATA_FLEX'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CONNECTION_IN'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'POWER_FLEX'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CONNECTION_IN'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'RIGID_RING'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CONNECTION_OUT'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'DATA_FLEX'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CONNECTION_OUT'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'POWER_FLEX'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CONNECTION_OUT'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'RIGID_RING'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'CONNECTORBOARD_SCHEME'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'Shows which configuration scheme of the Connectorboard was soldered.'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'OPTOBOX_CONNECTORBOARD'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'CONTAINER_LABEL'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'A manufacturer identification on the bottle or locally added label'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'GLUE'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CONTAINER_VOLUME'\u001b[0m, \u001b[32m'Container volume \u001b[0m\u001b[32m(\u001b[0m\u001b[32mvalue and unit\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'GLUE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'COOL_Purpose'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'Intended use of cooling tube. i.e. Specific Prototype, Pre-Production, Production'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'COOL_TUBE'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'COOL_STRING'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'KKTESTITEM1'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'COOL_STRING1'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'KKTESTITEM2'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'COOL_STRING2'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'KKTESTITEM2'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CORE_WT'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'PREPREG_ROLL'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'COUNTER'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'SVEN-TEST-REUSABLE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CROSS_SECTION'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'CABLE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'CYCLES_USED'\u001b[0m, \u001b[32m'How often whas this panel used for bonding hybrids'\u001b[0m, \u001b[32m'TESTPANEL'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DATA_NAME'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'DATE_OF_ARRIVAL'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'Date of arrival if different from date registered \u001b[0m\u001b[32m[\u001b[0m\u001b[32mYY/MM/DD\u001b[0m\u001b[32m]\u001b[0m\u001b[32m'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'ELEC_BREAK'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'DATE_OF_ARRIVAL'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'Date of arrival if different from date registered \u001b[0m\u001b[32m[\u001b[0m\u001b[32mYY/MM/DD\u001b[0m\u001b[32m]\u001b[0m\u001b[32m'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'TI_TERMINATIONS'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DATE_OF_ARRIVAL'\u001b[0m, \u001b[32m'Date received from manufacturer \u001b[0m\u001b[32m(\u001b[0m\u001b[32mYYYY/MM/DD\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'TI_TUBE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'DATE_OF_WELDING'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'Date of welding if different from date of registration \u001b[0m\u001b[32m(\u001b[0m\u001b[32mYYYY-MM-DD\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'COOLING_LOOP_PETAL'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'DATE_OF_WELDING'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'Date of welding if different to date of stage change \u001b[0m\u001b[32m[\u001b[0m\u001b[32mYY/MM/DD\u001b[0m\u001b[32m]\u001b[0m\u001b[32m'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'WIGLET_TERMINATION'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DATE_PANEL_MANUFACTURED'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'PCB'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DATE_RECEIVED'\u001b[0m, \u001b[32m'Date received from HPK \u001b[0m\u001b[32m(\u001b[0m\u001b[32mDD/MM/YYY\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'SENSOR_TESTCHIP_MD8'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DATE_RECEIVED'\u001b[0m, \u001b[32m'Date received from HPK \u001b[0m\u001b[32m(\u001b[0m\u001b[32mDD/MM/YYYY\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'SENSOR'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DATE_RECEIVED'\u001b[0m, \u001b[32m'Date received from HPK \u001b[0m\u001b[32m(\u001b[0m\u001b[32mDD/MM/YYYY\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'SENSOR_HALFMOONS'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DATE_RECEIVED'\u001b[0m, \u001b[32m'Date received from HPK \u001b[0m\u001b[32m(\u001b[0m\u001b[32mDD/MM/YYYY\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'SENSOR_H_TEST'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DATE_RECEIVED'\u001b[0m, \u001b[32m'Date received from HPK \u001b[0m\u001b[32m(\u001b[0m\u001b[32mDD/MM/YYYY\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'SENSOR_Jiayi_CLONE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DATE_RECEIVED'\u001b[0m, \u001b[32m'Date received from HPK \u001b[0m\u001b[32m(\u001b[0m\u001b[32mDD/MM/YYYY\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'SENSOR_MINI_MD8'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DATE_RECEIVED'\u001b[0m, \u001b[32m'Date received from HPK \u001b[0m\u001b[32m(\u001b[0m\u001b[32mDD/MM/YYYY\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'SENSOR_QAMINI_TEST'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DATE_RECEIVED'\u001b[0m, \u001b[32m'Date received from HPK \u001b[0m\u001b[32m(\u001b[0m\u001b[32mDD/MM/YYYY\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'SENSOR_QCHIP_TEST'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DATE_RECEIVED'\u001b[0m, \u001b[32m'Date received from HPK \u001b[0m\u001b[32m(\u001b[0m\u001b[32mDD/MM/YYYY\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'SENSOR_S_TEST'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DATE_SMDS_LOADED'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'PCB'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DELIVERY_DATE'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_RAW_MATERIAL_AL_G'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DELIVERY_DATE'\u001b[0m, \u001b[32m'Delivery date of foam block as yyyy-mm-dd'\u001b[0m, \u001b[32m'THERMALFOAM_PETAL'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DENSITY'\u001b[0m, \u001b[32m'Density in g/cc'\u001b[0m, \u001b[32m'THERMALFOAM_PETAL'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DENSITY'\u001b[0m, \u001b[32m'Density of honeycomb as LBS/FT^3'\u001b[0m, \u001b[32m'HONEYCOMB'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'DEPLETION_VOLTAGE'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'Mean depletion voltage in V calculated from the averaging of the values from the test structures \u001b[0m\u001b[32m(\u001b[0m\u001b[32mor in case of prototypes measured sensors on the wafer\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'SENSOR_WAFER'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DESCRIPTION'\u001b[0m, \u001b[32m'number of internal wires and more description'\u001b[0m, \u001b[32m'CABLE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DESIGN'\u001b[0m, \u001b[32m'Design version at manufacturer'\u001b[0m, \u001b[32m'ELEC_BREAK'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DESIGN'\u001b[0m, \u001b[32m'The name of the design of bus tape'\u001b[0m, \u001b[32m'BT'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DESIGN_COPPER_THICKNESS'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'PCB'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DESY_ID'\u001b[0m, \u001b[32m'DESY ID \u001b[0m\u001b[32m(\u001b[0m\u001b[32mname that we use\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'CORE_PETAL'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DETECTORSIDE'\u001b[0m, \u001b[32m'A or C side of ATLAS'\u001b[0m, \u001b[32m'EOS'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DETECTORSIDE'\u001b[0m, \u001b[32m'A or C side of ATLAS'\u001b[0m, \u001b[32m'EOS_CTC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DETECTORSIDE'\u001b[0m, \u001b[32m'A or C side of ATLAS'\u001b[0m, \u001b[32m'EOS_PANEL'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DFBDF'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'uunComponentTypeDemoWork'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DICING'\u001b[0m, \u001b[32m'Enter the name of dicing vendor\u001b[0m\u001b[32m(\u001b[0m\u001b[32ms\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'SENSOR_WAFER'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DIE_COMMENTS'\u001b[0m, \u001b[32m\"This is a section to add comments for a die's performance.\"\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DIE_INDEX'\u001b[0m, \u001b[32m'Die index to find the AMAC on the wafer map'\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DIE_INDEX'\u001b[0m, \u001b[32m'Index of this chip on the Wafer die'\u001b[0m, \u001b[32m'HCC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DIE_INDEX'\u001b[0m, \u001b[32m'Index of this chip on the Wafer die'\u001b[0m, \u001b[32m'JJ_HCC_CHIP_TEST_CLONE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DRAWING_NUMBER'\u001b[0m, \u001b[32m'Drawing Number of Tool or Assembly'\u001b[0m, \u001b[32m'TOOLS'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'DSC'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'uunComponentTypeDemoWork'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'Delivery_Date'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_BARE_LS_ADHESIVE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'Delivery_Date'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_Longeron_Inserts'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'Delivery_Date'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_PG_TILE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'Delivery_Date'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_RAW_MATERIAL_CFRP'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'Delivery_Date'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_TITANUIM_TUBE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'Delivery_Date'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_Termination_Sleeves'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'EFUSE'\u001b[0m, \u001b[32m'eFuse ID \u001b[0m\u001b[32m(\u001b[0m\u001b[32minteger\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'HCC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'EFUSE'\u001b[0m, \u001b[32m'eFuse ID \u001b[0m\u001b[32m(\u001b[0m\u001b[32minteger\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'JJ_HCC_CHIP_TEST_CLONE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'EFUSEID'\u001b[0m, \u001b[32m'eFuseID as hex string'\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'EFUSE_HEX'\u001b[0m, \u001b[32m'eFuse ID \u001b[0m\u001b[32m(\u001b[0m\u001b[32mhex\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'HCC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'EFUSE_HEX'\u001b[0m, \u001b[32m'eFuse ID \u001b[0m\u001b[32m(\u001b[0m\u001b[32mhex\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'JJ_HCC_CHIP_TEST_CLONE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ELECTRICAL_BREAK_ID'\u001b[0m, \u001b[32m'Unique Identifier for Electrical Break'\u001b[0m, \u001b[32m'ELEC_BREAK'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'EMPTY_DATE'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_RAW_MATERIAL_CFRP'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'ENDCAP_RING_GLUE_WEIGHT'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'Weight of glue used for endcap ring \u001b[0m\u001b[32m(\u001b[0m\u001b[32minner and outer\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m(\u001b[0m\u001b[32mgrams\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'GLUE'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'END_CHANNEL_NUMBER'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'CABLE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'END_CONNECTOR_DESCRIPTION'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'CABLE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'END_CRATE_NUMBER'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'CABLE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'END_RACK'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'CABLE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'EOS_PANEL_PROP_NCTC'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'EOS_PANEL'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'EOS_PANEL_PROP_NEOS'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'EOS_PANEL'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'EPOXY_RATIO'\u001b[0m, \u001b[32m'test test'\u001b[0m, \u001b[32m'EPOXY'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'EXPIRATION_DATE'\u001b[0m, \u001b[32m'Glue expiration date \u001b[0m\u001b[32m(\u001b[0m\u001b[32myyyy/mm/dd\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'GLUE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'EXPIRATION_DATE'\u001b[0m, \u001b[32m\"Glue's expiration date\"\u001b[0m, \u001b[32m'OEC_GLUE_HR'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'Empty_Date'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_BARE_LS_ADHESIVE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'Expiration_Date'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_BARE_LS_ADHESIVE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'Expiration_Date'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OB_RAW_MATERIAL_CFRP'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'FDVDF'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'uunComponentTypeDemoWork'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'FECHIP_VERSION'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'BARE_MODULE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'FECHIP_VERSION'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'MODULE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'FECHIP_VERSION'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'PCB'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'FETHICKNESS'\u001b[0m, \u001b[32m'Thickness of FE chips used on module in mum'\u001b[0m, \u001b[32m'MODULE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'FEWF'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'uunComponentTypeDemoWork'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'FIBER_TYPE'\u001b[0m, \u001b[32m'Carbon fiber type \u001b[0m\u001b[32m(\u001b[0m\u001b[32mfiber orientation/fiber type\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'CF_MAT'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'FINAL_PROBE_TIMESTAMP'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'Timestamp for the final probing, from which data is taken \u001b[0m\u001b[32m(\u001b[0m\u001b[32miso8601\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'HCC'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'FINAL_PROBE_TIMESTAMP'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'Timestamp for the final probing, from which data is taken \u001b[0m\u001b[32m(\u001b[0m\u001b[32miso8601\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'JJ_HCC_CHIP_TEST_CLONE'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'FLAVOUR'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OPTOBOARD_TERMINATIONBOARD'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'FLAVOUR'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OPTOBOX_CAN_BUS_CABLE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'FLAVOUR'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OPTOBOX_POWERBOARD'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'FLAVOUR'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'OPTOBOX_POWERBOX'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'FLAVOUR'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'TYPE1_SERVICE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'FLAVOUR'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'Active optical fibres and number of connectors'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'OPTOBOX_OPTICAL_FAN_OUT'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'FLAVOUR'\u001b[0m, \u001b[32m'Normal or mirrored'\u001b[0m, \u001b[32m'OPTOBOX_CONNECTORBOARD'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'FLAVOUR'\u001b[0m, \u001b[32m'test'\u001b[0m, \u001b[32m'OPTOBOX'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'FRAME_NAME'\u001b[0m, \u001b[32m'Module Frame Name'\u001b[0m, \u001b[32m'MODULE_FRAME'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'FUNCTION'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'DATA_FLEX'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'FUNCTION'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'POWER_FLEX'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'FUNCTION'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'RIGID_RING'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'FUNCTION'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'US_TEST_PIXEL_COMPONENT'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'FUSED'\u001b[0m, \u001b[32m'lpGBT1 fuse status'\u001b[0m, \u001b[32m'EOS'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'GBCR_SERIAl'\u001b[0m, \u001b[32m'GBCR serial number as printed on chip'\u001b[0m, \u001b[32m'GBCR'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'GLUE'\u001b[0m, \u001b[32m'Glue was used on this object'\u001b[0m, \u001b[32m'OEC_BARE_HR'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'GLUE-NAME'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'SVEN-TEST-BATCH'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'GLUE-NAME'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'SVEN-TEST-REUSABLE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'GLUE_SYRINGE'\u001b[0m, \u001b[32m'Glue Syringe Identifier'\u001b[0m, \u001b[32m'HYBRID_ASSEMBLY'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'GLUE_SYRINGE'\u001b[0m, \u001b[32m'Glue Syringe Identifier'\u001b[0m, \u001b[32m'JJ_HYBRID_ASSEMBLY'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'GLUE_SYRINGE'\u001b[0m, \u001b[32m'Glue Syringe Identifier'\u001b[0m, \u001b[32m'UofT_Star_Hybrid_Assembly_TestClone'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'GRADE'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'AMAC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'GRAPHITE_DOPED_GLUE'\u001b[0m, \u001b[32m'Graphite doped glue was used on this object'\u001b[0m, \u001b[32m'OEC_BARE_HR'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'GROSS_WT'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'PREPREG_ROLL'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'HCC_GELPACK_CIRCUIT'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'HCC_GELPACK'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'HCC_GELPACK_COUNT'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'HCC_GELPACK'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'HCC_GELPACK_DATE'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'HCC_GELPACK'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'HCC_GELPACK_LOT'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'HCC_GELPACK'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'HCC_GELPACK_QTE'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'HCC_GELPACK'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'HCC_GELPACK_TABLE'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'HCC_GELPACK'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'HC_ID'\u001b[0m, \u001b[32m'Honeycomb ID\u001b[0m\u001b[32m(\u001b[0m\u001b[32ms\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m(\u001b[0m\u001b[32mcomma separated\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'CORE_PETAL'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'HEIGHT'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'ABC_WAFER'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'HEIGHT'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'ABC_WAFER_TEST'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'HEIGHT'\u001b[0m, \u001b[32m'module height in mum'\u001b[0m, \u001b[32m'TESTMODULE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'HONEYCOMB_MANUFACTURER'\u001b[0m, \u001b[32m'Manufacturer and quality level '\u001b[0m, \u001b[32m'HONEYCOMB'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'HONEYCOMB_SET_ID'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'HONEYCOMBSET'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'HONEYCOMB_SET_INFO'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'List of honeycomb \u001b[0m\u001b[32m(\u001b[0m\u001b[32mbatch\u001b[0m\u001b[32m)\u001b[0m\u001b[32m IDs for each sub-parts of a honeycomb set.'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'HONEYCOMBSET'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'HONEYCOMB_SET_MASS'\u001b[0m, \u001b[32m'Mass of all parts of honeycomb set'\u001b[0m, \u001b[32m'HONEYCOMBSET'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'HV_TAB_ASSEMBLY_JIG'\u001b[0m, \u001b[32m'Jig used for HV-Tab assembly'\u001b[0m, \u001b[32m'MODULE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'HYBRID_NAME'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'JJ_TEST_STAR_HYBRID_ASSEMBLY'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'HYBRID_NAME'\u001b[0m, \u001b[32m'Hybrid Name, automatically generated'\u001b[0m, \u001b[32m'HYBRID_ASSEMBLY'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'HYBRID_NAME'\u001b[0m, \u001b[32m'Hybrid Name, automatically generated'\u001b[0m, \u001b[32m'JJ_HYBRID_ASSEMBLY'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'HYBRID_NAME'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'Hybrid Name, automatically generated'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'UofT_Star_Hybrid_Assembly_TestClone'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ID'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'CU_POLYIMIDE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ID'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'HYBRID_FLEX_SHEET'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ID'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'SENSOR_TEST_COMPONENT'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ID'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'SENSOR_TEST_ID'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ID'\u001b[0m, \u001b[32m''\u001b[0m, \u001b[32m'UV_GLUE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ID'\u001b[0m, \u001b[32m'Fuse ID for the ASIC'\u001b[0m, \u001b[32m'ABC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ID'\u001b[0m, \u001b[32m'Fuse ID for the ASIC'\u001b[0m, \u001b[32m'ABC_CMOS_Chip_Clone'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ID'\u001b[0m, \u001b[32m'Fuse ID for the ASIC'\u001b[0m, \u001b[32m'ABC_TEST'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ID'\u001b[0m, \u001b[32m'Fuse ID for the ASIC'\u001b[0m, \u001b[32m'JJ_ABC_CHIP_TEST_CLONE'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'ID'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'Honeycomb ID as \"XXXX-XXXX-YYYY\" \u001b[0m\u001b[32m(\u001b[0m\u001b[32mSample-Lot-Number - BlockNumber\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'HONEYCOMB'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ID'\u001b[0m, \u001b[32m'Identifier of the panel.'\u001b[0m, \u001b[32m'PWB_CARRIER'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ID'\u001b[0m, \u001b[32m'Identifier of the test coupon \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpanel ID + 0/1\u001b[0m\u001b[32m)\u001b[0m\u001b[32m.'\u001b[0m, \u001b[32m'PB_TC'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ID'\u001b[0m, \u001b[32m'Manufacturer wafer ID'\u001b[0m, \u001b[32m'FE_WAFER'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ID'\u001b[0m, \u001b[32m'VPXnnnnn-Wnnnnn-WFR'\u001b[0m, \u001b[32m'SENSOR_WAFER'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ID'\u001b[0m, \u001b[32m'VPXnnnnn-Wnnnnn-WRT'\u001b[0m, \u001b[32m'SENSOR_W_TEST'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'ID'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'Wafer number-sensor number for the sensor \u001b[0m\u001b[32m(\u001b[0m\u001b[32me.g., VPX32453-W7789\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'SENSOR_S_TEST'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ID'\u001b[0m, \u001b[32m'Wafer number-sensor number for the sensor \u001b[0m\u001b[32m(\u001b[0m\u001b[32me.g., WXX32453-1\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m, \u001b[32m'SENSOR'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'ID'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'Wafer number-sensor number for the sensor \u001b[0m\u001b[32m(\u001b[0m\u001b[32me.g., WXX32453-1\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m,\n",
"\u001b[2;32m│ │ \u001b[0m\u001b[32m'SENSOR_Jiayi_CLONE'\u001b[0m\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ID'\u001b[0m, \u001b[32m'\u001b[0m\u001b[32m[\u001b[0m\u001b[32mBatch\u001b[0m\u001b[32m]\u001b[0m\u001b[32m-\u001b[0m\u001b[32m[\u001b[0m\u001b[32mWafer\u001b[0m\u001b[32m]\u001b[0m\u001b[32m-\u001b[0m\u001b[32m[\u001b[0m\u001b[32mobject type\u001b[0m\u001b[32m]\u001b[0m\u001b[32m: VPXNNNNN-WNNNNN-MIM'\u001b[0m, \u001b[32m'SENSOR_MINI_MD8'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ID'\u001b[0m, \u001b[32m'\u001b[0m\u001b[32m[\u001b[0m\u001b[32mBatch\u001b[0m\u001b[32m]\u001b[0m\u001b[32m-\u001b[0m\u001b[32m[\u001b[0m\u001b[32mWafer\u001b[0m\u001b[32m]\u001b[0m\u001b[32m-\u001b[0m\u001b[32m[\u001b[0m\u001b[32mobject type\u001b[0m\u001b[32m]\u001b[0m\u001b[32m: VPXNNNNN-WNNNNN-MIT'\u001b[0m, \u001b[32m'SENSOR_QAMINI_TEST'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ID'\u001b[0m, \u001b[32m'\u001b[0m\u001b[32m[\u001b[0m\u001b[32mBatch\u001b[0m\u001b[32m]\u001b[0m\u001b[32m-\u001b[0m\u001b[32m[\u001b[0m\u001b[32mWafer\u001b[0m\u001b[32m]\u001b[0m\u001b[32m-\u001b[0m\u001b[32m[\u001b[0m\u001b[32mobject type\u001b[0m\u001b[32m]\u001b[0m\u001b[32m: VPXNNNNN-WNNNNN-TCM'\u001b[0m, \u001b[32m'SENSOR_TESTCHIP_MD8'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ID'\u001b[0m, \u001b[32m'\u001b[0m\u001b[32m[\u001b[0m\u001b[32mBatch\u001b[0m\u001b[32m]\u001b[0m\u001b[32m-\u001b[0m\u001b[32m[\u001b[0m\u001b[32mWafer\u001b[0m\u001b[32m]\u001b[0m\u001b[32m-\u001b[0m\u001b[32m[\u001b[0m\u001b[32mobject type\u001b[0m\u001b[32m]\u001b[0m\u001b[32m: VPXNNNNN-WNNNNN-TCT'\u001b[0m, \u001b[32m'SENSOR_QCHIP_TEST'\u001b[0m\u001b[1m)\u001b[0m,\n",
"\u001b[2;32m│ \u001b[0m\u001b[1m(\u001b[0m\u001b[32m'ID'\u001b[0m, \u001b[32m'\u001b[0m\u001b[32m[\u001b[0m\u001b[
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment