diff --git a/B08_Quantity/B08_Quantity_Build_WorkItemMaster.py b/B08_Quantity/B08_Quantity_Build_WorkItemMaster.py index 876a00ef..e3a9afa3 100644 --- a/B08_Quantity/B08_Quantity_Build_WorkItemMaster.py +++ b/B08_Quantity/B08_Quantity_Build_WorkItemMaster.py @@ -566,16 +566,6 @@ def capacity_formula_pending(table: dict[str, Any]) -> bool: return bool((keys | cells) & CAPACITY_SYMBOLS) -def variant_axis(table: dict[str, Any]) -> list[str]: - """행이 갈리는 축 — 표의 첫 열 값들(토질·암종·규격). 값 열은 뺀다.""" - seen: list[str] = [] - for row in table.get("rows", []): - key = norm(row[0]) if row else "" - if key and key not in seen: - seen.append(key) - return seen[:24] - - def basis_quantity_is_grouped(quantity: float | None) -> bool: """「10㎡당」처럼 **묶음 기준**인가. 1 이 아니면 곱셈이 그만큼 갈린다.""" return quantity is not None and abs(quantity - 1.0) > 1e-9 @@ -678,7 +668,8 @@ def build() -> dict[str, Any]: "special_glyphs": special_glyphs(table), # 공식 기호가 이 표에 직접 있는가 — 없으면 앞 표에서 물려받는 모양이다. "capacity_formula_here": capacity_formula_pending(table), - "variant_key": variant_axis(table), + # 갈래 키 — 부모 모양을 단 뒤 표 읽기가 가른 대로 채움(`_Variants`). 못 가르면 빈칸. + "variant_key": [], "condition_note": [norm(h) for h in table.get("headers", []) if norm(h)], "raw_row": table.get("rows", []), # 원문 셀 — B09 자원 축이 읽는다. } @@ -703,6 +694,10 @@ def build() -> dict[str, Any]: from B08_Quantity.B08_Quantity_Build_WorkItemMaster_Parents import apply_parent_modes apply_parent_modes(nodes) + # 갈래 키(명세 14장 정정) — 표 모양 가르기는 B09 표 읽기 한 벌을 그대로 돌려 씀. + from B08_Quantity.B08_Quantity_Build_WorkItemMaster_Variants import attach_variant_keys + + attach_variant_keys(nodes, data["effective_date"]) src_meta = { "dataset_id": data["dataset_id"], diff --git a/B08_Quantity/B08_Quantity_Build_WorkItemMaster_Variants.py b/B08_Quantity/B08_Quantity_Build_WorkItemMaster_Variants.py new file mode 100644 index 00000000..1585fbaa --- /dev/null +++ b/B08_Quantity/B08_Quantity_Build_WorkItemMaster_Variants.py @@ -0,0 +1,79 @@ +"""공종 마스터 — **갈래 키(`variant_key`)를 표 읽기가 실제로 가른 대로** 싣는다 (명세 14장 정정). + +종전 `variant_axis` 는 표 첫 열 값 24개만 담아, 단가표 갈래 제목 294 중 86 만 맞았다 +(2026-09-13 브레인 실측). 머리행 갈래(벌목 「5m이상~8m미만」) · 두 단 머리 · 첫 열이 자원 +이름인 표를 못 가렸다. + +⚠ 표 모양을 여기서 **다시 판정하지 않는다** — 첫 열 · 열이 자원 · 뭉친 이름+갈래 열 · 축 셋 · + 두 단 머리 · 작업조 · 공정 합산 · 고르기형 등 모양 가르기는 B09 표 읽기에 이미 있다. + 두 벌로 짜면 한쪽만 고쳐진다. 그 읽기를 **메모리의 이 마스터**에 돌려 표마다 가른 갈래 + 이름을 원문 표기 그대로 싣는다(키 비교는 받는 쪽이 `normalize_variant_key` 로). +⚠ 못 가른 표는 **빈칸** — 자원을 못 맞춘 표 · 계수 · 참조 · 미판정 표에 갈래를 지어내지 않는다. + +공종마다 `variant_keys` — 표들의 갈래 + 원문이 정했으나 자원 줄로 안 서는 갈래 +(불도저 운반 공식 갈래 · 합산형 단계 잎의 암질 행 · 9-4-1 [주]① 평균) · 합산형 부모는 단계 갈래. +""" + +from __future__ import annotations + +from typing import Any + + +def _add(labels: list[str], seen: set[str], label: str, normalize: Any) -> None: + key = normalize(label) + if key and key not in seen: + seen.add(key) + labels.append(label) + + +def attach_variant_keys(nodes: list[dict[str, Any]], edition: str) -> None: + """표마다 `variant_key`, 공종마다 `variant_keys` 를 채운다(자리에서).""" + from B09_Estimation.B09_Estimation_MachineProductivity_Dozer import extract_dozer_factors + from B09_Estimation.B09_Estimation_ParentSteps import AVERAGE_BASIS, AVERAGE_VARIANT, rock_rows + from B09_Estimation.B09_Estimation_ResourceAxis import build_resource_axis + from B09_Estimation.B09_Estimation_ResourceAxis_Sources import load_combined_catalog + from B09_Estimation.B09_Estimation_UnitPrice import normalize_variant_key as normalize + + axis = build_resource_axis( + {"effective_date": edition, "work_items": nodes}, load_combined_catalog() + ) + by_table: dict[tuple[str, str], tuple[list[str], set[str]]] = {} + for row in axis.rows: + if row.variant: + labels, seen = by_table.setdefault((row.work_item_code, row.pum_table_id), ([], set())) + _add(labels, seen, row.variant, normalize) + + steps = { + str(step["code"]) + for node in nodes + if node.get("parent_mode") == "sum_steps" + for step in node.get("steps") or [] + } + by_code: dict[str, list[str]] = {} + for node in nodes: + code = str(node.get("work_item_code") or "") + keys: list[str] = [] + seen: set[str] = set() + for table in node.get("tables") or []: + labels, table_seen = by_table.get((code, str(table.get("pum_table_id"))), ([], set())) + found = extract_dozer_factors(code, table) + for label in found if isinstance(found, dict) else {}: + _add(labels, table_seen, label, normalize) + if code in steps: + for rock, _, _ in rock_rows({"tables": [table]}): + _add(labels, table_seen, rock, normalize) + table["variant_key"] = labels + for label in labels: + _add(keys, seen, label, normalize) + if code in AVERAGE_BASIS and keys: + _add(keys, seen, AVERAGE_VARIANT, normalize) + by_code[code] = keys + for node in nodes: + code = str(node.get("work_item_code") or "") + keys = list(by_code.get(code) or []) + if node.get("parent_mode") == "sum_steps": + seen = {normalize(k) for k in keys} + for step in node.get("steps") or []: + for label in by_code.get(str(step["code"])) or []: + _add(keys, seen, label, normalize) + node["variant_keys"] = keys diff --git a/resources/data_work_item_master/_manifest.json b/resources/data_work_item_master/_manifest.json index 68b41fde..b4ba00c6 100644 --- a/resources/data_work_item_master/_manifest.json +++ b/resources/data_work_item_master/_manifest.json @@ -1,7 +1,7 @@ { "schema_version": "1.0", "dataset_id": "data_work_item_master_manifest", - "generated_at": "2026-09-13T22:33:42+09:00", + "generated_at": "2026-09-13T23:03:27+09:00", "built_by": "B08_Quantity/B08_Quantity_Build_WorkItemMaster.py", "source": { "dataset_id": "pum_forest", @@ -12,8 +12,8 @@ "files": [ { "file": "work_item_master_2026-01-01.json", - "sha256": "4e7790cd9d288e6026e7ccd81ce0c81320b395c84575655ff2dce443f44d65a4", - "size_bytes": 862887 + "sha256": "1463ea14ec2d3d45ec18b3a7e4810333de8e5fc40aaeb0dd329c68f85c863e33", + "size_bytes": 835659 }, { "file": "form_undetermined_2026-01-01.json", diff --git a/resources/data_work_item_master/work_item_master_2026-01-01.json b/resources/data_work_item_master/work_item_master_2026-01-01.json index f684abeb..880bf1bc 100644 --- a/resources/data_work_item_master/work_item_master_2026-01-01.json +++ b/resources/data_work_item_master/work_item_master_2026-01-01.json @@ -3,7 +3,7 @@ "dataset_id": "work_item_master_forest", "effective_date": "2026-01-01", "pum_edition": "2026-01-01", - "generated_at": "2026-09-13T22:33:42+09:00", + "generated_at": "2026-09-13T23:03:27+09:00", "dataset_version": { "dataset_id": "pum_forest", "effective_date": "2026-01-01", @@ -113,7 +113,8 @@ "parent_code": null, "sort_order": 256, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-01-01", @@ -123,7 +124,8 @@ "parent_code": "FP-01", "sort_order": 512, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-01-01-01", @@ -132,7 +134,8 @@ "level": 3, "parent_code": "FP-01-01", "sort_order": 768, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-01-01-02", @@ -159,14 +162,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "2.5톤 차량", - "소 묘", - "중 묘", - "대 묘", - "소 2-2 (용기묘)", - "※ 묘목 1,000본당 무게 - 소나무 노지묘 1-1 (45㎏) - 낙엽송, 편백 용기묘 2-0 (200㎏) - 상수리 용기묘 1-0 (200㎏)" - ], + "variant_key": [], "condition_note": [ "규 격", "수종 및 묘령(형태)", @@ -218,7 +214,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-01-03", @@ -227,7 +224,8 @@ "level": 3, "parent_code": "FP-01-01", "sort_order": 1280, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-01-02", @@ -237,7 +235,8 @@ "parent_code": "FP-01", "sort_order": 1536, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-01-02-01", @@ -246,7 +245,8 @@ "level": 3, "parent_code": "FP-01-02", "sort_order": 1792, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-01-02-02", @@ -283,32 +283,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "단 위", - "공사연장", - "공사폭원", - "직공인부", - "공사 및 사업면적", - "용지면적", - "토 적(높이, 너비)", - "토 적(단면적)", - "토 적(체적)", - "토적(체적합계)", - "떼", - "모래,자갈", - "조약돌", - "견치돌, 깬돌", - "야 면 석(野面石)", - "cm", - "돌쌓기 및 돌붙임", - "사 석(捨石)", - "다 듬 돌(切石, 板石)", - "벽돌", - "블록", - "시멘트", - "모르타르", - "콘크리트" - ], + "variant_key": [], "condition_note": [ "종 목", "규 격", @@ -911,13 +886,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "설계서의 총액", - "설계서의 소계", - "설계서의 금액란", - "일위대가표의 계금", - "일위대가표의 금액란" - ], + "variant_key": [], "condition_note": [ "종 목", "단 위", @@ -957,7 +926,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-02-03", @@ -987,25 +957,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "경 암 ( 硬 岩 )", - "보 통 암 ( 普 通 硬 岩 )", - "연 암 ( 軟 岩 )", - "풍 화 암 ( 風 化 岩 )", - "폐 콘 크 리 트", - "호 박 돌 ( 玉 石 )", - "역 (礫 )", - "역 질 토 ( 礫 質 土 )", - "고결(固結)된 역질토(礫質土)", - "모 래 ( 砂 )", - "암괴(岩塊)나 호박돌이 섞인 모래", - "점 질 토", - "역(礫)이 섞인 점질토(粘質土)", - "암괴(岩塊)나 호박돌이 섞인 점토", - "점 토 ( 粘 土 )", - "역 이 섞 인 점 질 토", - "암 괴 ( 岩 塊 ) 나 호 박 돌 이 섞 인 점 토" - ], + "variant_key": [], "condition_note": [ "종 별", "L", @@ -1116,10 +1068,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "자연상태의 체적", - "흐트러진 상태의 체적" - ], + "variant_key": [], "condition_note": [ "구하는 Q 기준이 되는 q", "자연상태의 체적", @@ -1141,7 +1090,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-02-04", @@ -1168,11 +1118,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "사용고재(시멘트공대 및 공드람 제외)", - "강재스크랩(Scrap)", - "기타발생재" - ], + "variant_key": [], "condition_note": [ "품 명", "공제율" @@ -1192,7 +1138,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-02-05", @@ -1201,7 +1148,8 @@ "level": 3, "parent_code": "FP-01-02", "sort_order": 2816, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-01-02-06", @@ -1210,7 +1158,8 @@ "level": 3, "parent_code": "FP-01-02", "sort_order": 3072, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-01-02-07", @@ -1240,32 +1189,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "6톤 차량", - "목재(원목)", - "목재(제재목)", - "경유ㆍ휘발유", - "아스팔트", - "새끼", - "벽돌", - "기와", - "보도블록", - "견치돌", - "블록", - "두께 15cm", - "두께 20cm", - "타일", - "크링커타일", - "합판 유리", - "페인트", - "아스타일", - "흄관", - "450 "", - "600 "", - "800 "", - "900 "", - "1,000 "" - ], + "variant_key": [], "condition_note": [ "종 별", "규격", @@ -1776,7 +1700,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-02-08", @@ -1785,7 +1710,8 @@ "level": 3, "parent_code": "FP-01-02", "sort_order": 3584, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-01-03", @@ -1795,7 +1721,8 @@ "parent_code": "FP-01", "sort_order": 3840, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-01-03-01", @@ -1822,14 +1749,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "시 멘 트", - "잔골재ㆍ채움재", - "굵 은 골 재", - "아 스 팔 트", - "석 분", - "혼 화 재" - ], + "variant_key": [], "condition_note": [ "종 류", "정 치 식 (%)", @@ -1885,12 +1805,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "모 래", - "부순돌ㆍ자갈ㆍ막자갈", - "석 분", - "점 질 토" - ], + "variant_key": [], "condition_note": [ "종 류", "할 증 률 (%)" @@ -1931,9 +1846,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "모 래" - ], + "variant_key": [], "condition_note": [ "종 류", "할 증 률 (%)" @@ -1962,19 +1875,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "원 형 철 근", - "이 형 철 근", - "이형철근 (교량·지하철 및 이와 유사한 복잡한 구조물의 주철근)", - "강 판", - "강관(옥외 수도용 강관 제외)", - "대형형강 (形 鋼)", - "소 형 형 강", - "봉 강 (棒 鋼)", - "평 강 대 강", - "경량형 강각(角) 파이프", - "리 벳 (제 품)" - ], + "variant_key": [], "condition_note": [ "종 류", "할 증 률 (%)" @@ -2043,25 +1944,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "목 재", - "판 재", - "합 판", - "수장용 합판", - "조립식구조물(U형플륨관 등)", - "레디믹스트콘크리트타설 (현장 플랜트 포함)", - "철근 구조물", - "철골 구조물", - "원 석 (마름돌용)", - "사방용 수목", - "떼 및 초화류", - "현장콘크리트 타설 (인력 및 믹서)", - "철근구조물", - "소형구조물", - "아스팔트콘크리트 포설(현장플랜트 포함)", - "콘크리트포장 포설", - "원심력철근콘크리트관" - ], + "variant_key": [], "condition_note": [ "재 료 별", "할 증 률 (%)" @@ -2154,7 +2037,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-03-02", @@ -2163,7 +2047,8 @@ "level": 3, "parent_code": "FP-01-03", "sort_order": 4352, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-01-04", @@ -2173,7 +2058,8 @@ "parent_code": "FP-01", "sort_order": 4608, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-01-04-01", @@ -2202,11 +2088,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "6월∼9월", - "10월∼12월", - "1∼5월" - ], + "variant_key": [], "condition_note": [ "작업시기", "할증률" @@ -2226,7 +2108,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-02", @@ -2253,11 +2136,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "3년차 이상", - "2년차", - "당해 연도(전년도 추기조림 포함)" - ], + "variant_key": [], "condition_note": [ "조림 후 경과연수", "할증률" @@ -2277,7 +2156,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-03", @@ -2306,11 +2186,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "집단화 정도", - "개소당 평균면적이 1~3ha 미만", - "개소당 평균면적이 3ha 이상" - ], + "variant_key": [], "condition_note": [ "구 분", "집단화 정도", @@ -2334,7 +2210,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-04", @@ -2363,15 +2240,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "작업구역", - "개소 평균 1~3ha 미만", - "개소 평균 3~5ha 미만", - "개소당 평균 5ha 이상", - "벌채구역 크기", - "개벌지 크기가 3,000㎡(또는 벌채폭 60m) 미만", - "개벌지 크기가 3,000㎡ 이상" - ], + "variant_key": [], "condition_note": [ "구 분", "집단화 정도", @@ -2415,7 +2284,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-05", @@ -2444,15 +2314,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "산지경사", - "중 (15~30°)", - "완 (15° 미만)", - "평균경사도", - "평균경사도 20%~50%미만", - "평균경사도 10%~20%미만", - "평균경사도 10%미만" - ], + "variant_key": [], "condition_note": [ "적용기준", "경사도", @@ -2496,7 +2358,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-06", @@ -2525,12 +2388,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "도 보", - "1.3㎞∼2.5㎞ 미만", - "1.3㎞ 미만", - "차 량" - ], + "variant_key": [], "condition_note": [ "구 분", "작업장까지 이동거리", @@ -2569,7 +2427,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-07", @@ -2596,11 +2455,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "식생을 제거하지 않고는 보행이 곤란하다", - "보행하는데 약간의 어려움이 있다", - "보행이 용이하다" - ], + "variant_key": [], "condition_note": [ "하층식생", "할증률" @@ -2620,7 +2475,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-08", @@ -2647,11 +2503,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "가슴높이 이상의 초본․관목", - "가슴높이 미만의 초본․관목", - "무릎높이 이하의 초본․관목" - ], + "variant_key": [], "condition_note": [ "장애물의 정도", "할증률" @@ -2671,7 +2523,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-09", @@ -2700,11 +2553,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "어렵다(높이 1.2m 이상이고, 직경이 4~6cm 이상)", - "보통이다(높이 1.2m 이상이고, 직경이 4~6cm 미만)", - "쉽다(높이 1.2m 미만이고, 낫으로도 제거가 용이)" - ], + "variant_key": [], "condition_note": [ "제거대상 식생", "할증률" @@ -2724,7 +2573,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-10", @@ -2753,11 +2603,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "돌 등 장애물 함량이 30% 이상이고, 나무뿌리가 밀하게 분포할 경우", - "돌 등 장애물 함량이 10~30%이고, 나무뿌리가 보통정도로 분포할 경우", - "식혈시 장애물이 거의 없음" - ], + "variant_key": [], "condition_note": [ "토양조건", "할증률" @@ -2777,7 +2623,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-11", @@ -2806,13 +2653,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "과밀(80%초과 피복)", - "밀(60~80%미만 피복)", - "보통(40~60%미만 피복)", - "소(20~40%미만 피복)", - "과소(20%미만 피복)" - ], + "variant_key": [], "condition_note": [ "덩굴 피복도", "할인․할증률" @@ -2840,7 +2681,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-12", @@ -2869,11 +2711,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "대 (임지의 71% 이상 분포)", - "중 (임지의 41%~70% 분포)", - "소 (임지의 40% 이하 분포)" - ], + "variant_key": [], "condition_note": [ "제거대상 피복도", "할인․할증률" @@ -2893,7 +2731,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-13", @@ -2920,11 +2759,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "돌, 도랑, 그루터기 등으로 주행이 매우 힘들다", - "돌, 도랑, 그루터기 등으로 주행이 다소 힘들다", - "주행에 어려움이 없다" - ], + "variant_key": [], "condition_note": [ "주행 장애물 상태", "할증률" @@ -2944,7 +2779,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-14", @@ -2973,15 +2809,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "가선을 이용한 기계장비의 원목․생산재 집재", - "상향집재", - "소나무재선충병 인력에 의한 원목 및 재해산물 수집", - "중(15~30°)", - "완(15° 미만)", - "소나무재선충병 방제 훈증더미 제거", - "수평 또는 하향집재" - ], + "variant_key": [], "condition_note": [ "구분", "집재방향", @@ -3032,7 +2860,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-15", @@ -3061,11 +2890,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "11~20m", - "6~10m", - "0~5m" - ], + "variant_key": [], "condition_note": [ "횡단운반거리", "할증률" @@ -3085,7 +2910,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-16", @@ -3112,9 +2938,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "규격재 생산을 위한 조재" - ], + "variant_key": [], "condition_note": [ "적용 조건", "할증률" @@ -3126,7 +2950,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-17", @@ -3155,17 +2980,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "산림병해충방제 (단목베기, 나무주사)", - "10~29본/ha", - "30~49본/ha", - "50본/ha 이상", - "소나무재선충병방제 (소각, 매몰, 훈증, 박피)", - "15본~25본/ha", - "25본~35본/ha", - "35본~45본/ha", - "45본/ha 이상" - ], + "variant_key": [], "condition_note": [ "구 분", "대상목 분포", @@ -3219,7 +3034,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-18", @@ -3248,13 +3064,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "산림병해충방제 (산물수집-기계장비 집재)", - "16~20cm", - "소나무재선충병방제 (그물망 피복)", - "18cm", - "20cm 이상" - ], + "variant_key": [], "condition_note": [ "구분", "평균경급", @@ -3305,9 +3115,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "매개충나무주사" - ], + "variant_key": [], "condition_note": [ "구분", "내 용", @@ -3321,7 +3129,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-19", @@ -3330,7 +3139,8 @@ "level": 3, "parent_code": "FP-01-04", "sort_order": 9472, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-01-04-20", @@ -3357,12 +3167,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "사면형", - "종방향 복합사면(가시거리 불량, 고소작업차 사용 필요)", - "횡방향 복합사면(가시거리 보통)", - "단순사면(가시거리 양호)" - ], + "variant_key": [], "condition_note": [ "구 분", "내 용", @@ -3391,7 +3196,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-21", @@ -3420,11 +3226,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "접근성", - "이착륙장~방재사업지까지의 이동거리 200m 이내 까지 차량접근 가능", - "이착륙장~방재사업지까지의 이동거리 100m 이내 까지 차량접근 가능" - ], + "variant_key": [], "condition_note": [ "구 분", "내 용", @@ -3448,7 +3250,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-22", @@ -3475,10 +3278,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "방제 수종", - "소나무, 해송" - ], + "variant_key": [], "condition_note": [ "구 분", "내 용", @@ -3497,7 +3297,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-23", @@ -3526,14 +3327,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "그물망 피복 시 임내 운반거리", - "101~200m", - "100m 이하", - "수라집재 시 목재 운반거리", - "6~10m", - "0~5m" - ], + "variant_key": [], "condition_note": [ "구 분", "내 용", @@ -3572,7 +3366,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-24", @@ -3599,10 +3394,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "장비의 규격 (굴삭기)", - "0.4㎥ 이상" - ], + "variant_key": [], "condition_note": [ "구 분", "내 용", @@ -3621,7 +3413,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-25", @@ -3648,13 +3441,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "작업 가능 시간", - "3시간 이하", - "4시간 이하", - "5시간 이하", - "6시간 이하" - ], + "variant_key": [], "condition_note": [ "구 분", "적용조건", @@ -3688,7 +3475,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-04-26", @@ -3715,10 +3503,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "1", - "2" - ], + "variant_key": [], "condition_note": [ "구분", "조 건", @@ -3739,7 +3524,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-05", @@ -3748,7 +3534,8 @@ "level": 2, "parent_code": "FP-01", "sort_order": 11520, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-01-06", @@ -3777,28 +3564,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "적용방법", - "순 원 가", - "간 접 재 료 비", - "소 계", - "노 무 비", - "간 접 노 무 비", - "경 비", - "산 업 재 해 보 상 보 험 료", - "고 용 보 험 료", - "국 민 건 강 보 험 료", - "국 민 연 금 보 험 료", - "노 인 장 기 요 양 보 험 료", - "산 업 안 전 보 건 관 리 비", - "기 타 경 비", - "기 타 법 정 경 비", - "일 반 관 리 비", - "이 윤", - "총 원 가", - "부 가 가 치 세", - "합 계" - ], + "variant_key": [], "condition_note": [ "구분 비목", "적용 기준" @@ -3982,7 +3748,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-07", @@ -3992,7 +3759,8 @@ "parent_code": "FP-01", "sort_order": 12032, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-01-07-01", @@ -4019,12 +3787,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "2회", - "3회", - "4회", - "6회" - ], + "variant_key": [], "condition_note": [ "사용횟수", "구 조 물" @@ -4048,7 +3811,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-01-07-02", @@ -4057,7 +3821,8 @@ "level": 3, "parent_code": "FP-01-07", "sort_order": 12544, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-01-07-03", @@ -4066,7 +3831,8 @@ "level": 3, "parent_code": "FP-01-07", "sort_order": 12800, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-01-07-04", @@ -4095,14 +3861,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "거 푸 집 씻 기", - "콘크리트혼합 및 양생", - "돌 쌓 기 모 르 타 르", - "돌 씻 기", - "모래씻기", - "잡 용 수" - ], + "variant_key": [], "condition_note": [ "구 분", "단 위", @@ -4141,7 +3900,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02", @@ -4151,7 +3911,8 @@ "parent_code": null, "sort_order": 13312, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-02-01", @@ -4183,22 +3944,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "위치 및 면적", - "구분", - "단 위 작 업 별", - "- 직접노무비", - "ㆍ 둘레베기", - "합 계", - "직접노무비", - "재 료 비", - "경비(기계경비)", - "<할인․할증률 적용>", - "구 분", - "둘레베기", - "o 집단화 정도(1-4-3)", - "o 경사도(1-4-5)" - ], + "variant_key": [], "condition_note": [ "ha당 풀베기(둘레베기) 단가산출서(예시)" ], @@ -4528,7 +4274,8 @@ ] } ], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-02-01-01", @@ -4555,11 +4302,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "보통휘발유 (주연료)", - "체인오일 (일반오일)", - "체인오일 (친환경오일)" - ], + "variant_key": [], "condition_note": [ "재료명", "소요량 (ℓ/대/일)", @@ -4604,9 +4347,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "예취기(휘발유)" - ], + "variant_key": [], "condition_note": [ "기계명(주재료)", "주연료 (ℓ/일,대)", @@ -4639,9 +4380,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "아키아윈치(휘발유)" - ], + "variant_key": [], "condition_note": [ "기계명(주재료)", "주연료 (ℓ/일,대)", @@ -4672,9 +4411,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "2드럼 케이블윈치(휘발유)" - ], + "variant_key": [], "condition_note": [ "기계명(주재료)", "주연료 (ℓ/일,대)", @@ -4705,9 +4442,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "천공기 (휘발유)" - ], + "variant_key": [], "condition_note": [ "기계명 (주재료)", "주연료 (ℓ/일,대)", @@ -4723,7 +4458,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-01-02", @@ -4750,20 +4486,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "트랙터 부착 기계", - "굴삭기 부착 기계", - "타워야더(RME 300T)", - "콜라타워야더(K-301)", - "소형 포워더", - "무한궤도형 임내차", - "HAM300(임업용 트랙터 포함)", - "하베스터(헤드부착형)", - "스윙야더", - "소형트럭", - "우드그래플", - "임업용동력집재기" - ], + "variant_key": [], "condition_note": [ "기계명", "주연료 (ℓ/일,대)", @@ -4845,7 +4568,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-01-03", @@ -4872,10 +4596,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "트랙 접지력 보강", - "블레이드 및 실린더 교체" - ], + "variant_key": [], "condition_note": [ "품 명", "소요비용(원)" @@ -4891,7 +4612,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-01-04", @@ -4918,11 +4640,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "주재료", - "페인트", - "마킹테이프" - ], + "variant_key": [], "condition_note": [ "재료명", "재료비(1km 소요량기준)", @@ -4969,10 +4687,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "주재료", - "페인트" - ], + "variant_key": [], "condition_note": [ "재료명", "재료비 (ha당 소요량)", @@ -5012,10 +4727,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "주재료", - "마킹테이프" - ], + "variant_key": [], "condition_note": [ "재료명", "재료비 (1km당 소요량)", @@ -5053,10 +4765,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "주재료", - "페인트" - ], + "variant_key": [], "condition_note": [ "재료명", "재료비 (ha당 소요량)", @@ -5079,7 +4788,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-01-05", @@ -5108,9 +4818,7 @@ "x(U+0078)" ], "capacity_formula_here": false, - "variant_key": [ - "농약 (Fluroxypyr -meptyl + Triclypyr-TEA 미탁제)" - ], + "variant_key": [], "condition_note": [ "재료명", "주재료(병)", @@ -5143,9 +4851,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "소금처리량(g)" - ], + "variant_key": [], "condition_note": [ "주두부직경(㎝)", "2㎝미만", @@ -5180,10 +4886,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "농약 (글리포세이트)", - "친환경 비닐랩" - ], + "variant_key": [], "condition_note": [ "재료명", "주재료 (병, 매, kg)", @@ -5205,7 +4908,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-01-06", @@ -5234,16 +4938,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "수량", - "천공테이프", - "흰색 페인트 (친환경성)", - "표식라벨", - "천공기날", - "약재주입기", - "방제복", - "약제배낭" - ], + "variant_key": [], "condition_note": [ "구 분", "주 재 료", @@ -5300,7 +4995,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-01-07", @@ -5327,13 +5023,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "훈증약제", - "훈증피복제", - "표식라벨", - "벌근훈증약제", - "벌근피복제" - ], + "variant_key": [], "condition_note": [ "구 분", "단 위", @@ -5373,7 +5063,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-01-08", @@ -5400,11 +5091,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "수 량", - "휘발유 (양수기)", - "깃 발" - ], + "variant_key": [], "condition_note": [ "구 분", "주 재 료", @@ -5431,7 +5118,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-01-09", @@ -5458,11 +5146,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "수 량", - "휘발유 (연료)", - "잡품" - ], + "variant_key": [], "condition_note": [ "구 분", "주 재 료", @@ -5489,7 +5173,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-01-10", @@ -5516,11 +5201,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "수 량", - "휘발유(발전기)", - "잡품" - ], + "variant_key": [], "condition_note": [ "구 분", "주 재 료", @@ -5547,7 +5228,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-01-11", @@ -5574,10 +5256,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "수 량", - "경유(차량살포)" - ], + "variant_key": [], "condition_note": [ "구 분", "주 재 료", @@ -5598,7 +5277,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-01-12", @@ -5625,10 +5305,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "그물망", - "표식라벨" - ], + "variant_key": [], "condition_note": [ "구 분", "단 위", @@ -5647,7 +5324,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-01-13", @@ -5674,10 +5352,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "메인파쇄기날", - "분쇄기날" - ], + "variant_key": [], "condition_note": [ "소모품", "소모율", @@ -5699,7 +5374,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-02", @@ -5731,28 +5407,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "위치 및 면적", - "구분", - "단 위 작 업 별", - "- 직접노무비", - "ㆍ 묘목찾기", - "2. 모두베기", - "ㆍ 예취기 사용", - "- 재료비(예취기)", - "ㆍ보통휘발유(주연료)", - "ㆍ보통휘발유(잡품)", - "- 기계경비(예취기)", - "합 계", - "직접노무비", - "재 료 비", - "경비(기계경비)", - "<할인․할증률 적용>", - "구 분", - "묘목찾기", - "o 집단화 정도(1-4-3)", - "o 경사도(1-4-5)" - ], + "variant_key": [], "condition_note": [ "ha당 풀베기(모두베기) 단가산출서(예시)" ], @@ -6096,7 +5751,8 @@ ] } ], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-02-02-01", @@ -6125,9 +5781,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "45cc (배기량기준)" - ], + "variant_key": [], "condition_note": [ "규격", "손료계수 (1일 1대당)", @@ -6141,7 +5795,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-02-02", @@ -6170,9 +5825,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "예취기 (배기량 35cc)" - ], + "variant_key": [], "condition_note": [ "기계명 (규격)", "손료계수 (1일 1대당)", @@ -6186,7 +5839,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-02-03", @@ -6215,28 +5869,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "아키아윈치", - "2드럼 케이블윈치", - "파르미윈치(트랙터 포함)", - "타이푼윈치(트랙터 포함)", - "우드피싱(굴삭기 포함)", - "무한궤도형 임내차", - "스마트집재기(트랙터 포함)", - "HAM300(트랙터 포함)", - "콜라타워야더(K-301)", - "소형굴삭기+부착용집개", - "임업용 동력집재기(트랙터부착형)", - "HAM200, 춘천집재기, 스마트집재기", - "하베스터(헤드부착형)", - "0.6㎥급 무한궤도형 굴착기", - "동력상하차기, 임업용 굴착기(우드그래플)", - "타워야더(RME 300T)", - "스윙야더(기본차량 포함)", - "초소형 포워더", - "소형 포워더", - "소형트럭" - ], + "variant_key": [], "condition_note": [ "기계명", "손료계수 (1일 1대당)", @@ -6366,7 +5999,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-02-04", @@ -6395,9 +6029,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "배부식분무기" - ], + "variant_key": [], "condition_note": [ "기계명 (규격)", "손료계수 (1일 1대당)", @@ -6411,7 +6043,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-02-05", @@ -6440,9 +6073,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "45cc (배기량 기준)" - ], + "variant_key": [], "condition_note": [ "규 격", "손료계수", @@ -6456,7 +6087,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-02-06", @@ -6483,9 +6115,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "5HP(양수기)" - ], + "variant_key": [], "condition_note": [ "규 격", "손료계수(1일 1대당)", @@ -6499,7 +6129,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-02-07", @@ -6526,9 +6157,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "무인헬기(FAZER) 내용가동시간 1,400시간기준" - ], + "variant_key": [], "condition_note": [ "규 격", "1일 손료계수 (1일 1대당 4시간 가동)", @@ -6542,7 +6171,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-02-08", @@ -6569,10 +6199,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "무인멀티콥터(평균가) 내용가동시간 1,000시간 기준", - "리튬폴리머 배터리 (평균가) (16,000mA, 32000mA)" - ], + "variant_key": [], "condition_note": [ "규 격", "1일 손료계수 (1일 1대당 4시간 가동)", @@ -6591,7 +6218,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-02-09", @@ -6618,10 +6246,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "1톤(방제차량)", - "45HP(동력분무기)" - ], + "variant_key": [], "condition_note": [ "규 격", "손료계수 (1일 1대당)", @@ -6640,7 +6265,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-02-10", @@ -6667,9 +6293,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "-" - ], + "variant_key": [], "condition_note": [ "규격", "장비가격(천원)", @@ -6685,7 +6309,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-02-02-11", @@ -6714,13 +6339,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "손료계수(10⁻⁷)", - "굴착기(0.2~0.8㎥)", - "부착용집게(0.2~0.8㎥)", - "트럭탑재형크레인", - "타이어형크레인" - ], + "variant_key": [], "condition_note": [ "기 계 명", "기계손료(시간당 적용기준)" @@ -6748,7 +6367,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-03", @@ -6758,7 +6378,8 @@ "parent_code": null, "sort_order": 20224, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-03-01", @@ -6785,10 +6406,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "소요인력", - "0.2" - ], + "variant_key": [], "condition_note": [ "(단위 : 인/ha)" ], @@ -6822,32 +6440,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "위치 및 면적", - "구분", - "단 위 작 업 별", - "- 직접노무비", - "ㆍ단목", - "- 재료비(체인톱)", - "ㆍ보통휘발유(주연료)", - "ㆍ보통휘발유(잡품)", - "ㆍ체인오일(일반)", - "- 기계경비(체인톱)", - "2. 집재", - "ㆍ우드그래플", - "1.2m", - "1.8m", - "2.1m", - "2.7m", - "3.6m", - "- 재료비(우드그래플)", - "ㆍ경유(주연료)", - "ㆍ경유(잡품)", - "- 기계경비(우드그래플)", - "3. 운재", - "ㆍ소형트럭", - "- 재료비(소형트럭)" - ], + "variant_key": [], "condition_note": [ "ha당 임목수확 단가산출서(예시)" ], @@ -7736,7 +7329,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-03-02", @@ -7763,10 +7357,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "구 분", - "작업로 예정선 선정 및 표식" - ], + "variant_key": [], "condition_note": [ "(단위 : 인/1일 1km당))" ], @@ -7802,32 +7393,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "위치 및 면적", - "구분", - "단 위 작 업 별", - "- 직접노무비", - "ㆍ전간", - "- 재료비(체인톱)", - "ㆍ보통휘발유(주연료)", - "ㆍ보통휘발유(잡품)", - "ㆍ체인오일(일반)", - "- 기계경비(체인톱)", - "2. 집재", - "2-1. 스마트집재기", - "ㆍ스마트집재기", - "50m이하", - "51~100m", - "101~15m", - "- 재료비(집재기)", - "ㆍ경유(주연료)", - "ㆍ경유(잡품)", - "- 기계경비(집재기)", - "2-2. 임업용굴착기", - "ㆍ우드그래플", - "- 재료비(우드그래플)", - "- 기계경비(우드그래플)" - ], + "variant_key": [], "condition_note": [ "ha당 임목수확 단가산출서(예시)" ], @@ -8828,7 +8394,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-03-03", @@ -8855,11 +8422,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "구 분", - "소작업로", - "대작업로" - ], + "variant_key": [], "condition_note": [ "(단위 : 인/km당)" ], @@ -8900,32 +8463,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "위치 및 면적", - "구분", - "단 위 작 업 별", - "- 직접노무비", - "ㆍ하베스터", - "- 재료비(하베스터)", - "ㆍ경유(주연료)", - "ㆍ경유(잡품)", - "- 기계경비", - "ㆍ하베스터헤드", - "ㆍ0.6㎥굴착기", - "2. 집재", - "2-1. 타워야더", - "ㆍ타워야더", - "100m이하", - "150m이하", - "- 재료비(집재기)", - "- 기계경비(집재기)", - "2-2. 임업용굴착기", - "ㆍ우드그래플", - "- 재료비(우드그래플)", - "- 기계경비(우드그래플)", - "3. 운재", - "ㆍ소형포워더" - ], + "variant_key": [], "condition_note": [ "ha당 임목수확 단가산출서(예시)" ], @@ -9814,7 +9352,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-03-04", @@ -9824,7 +9363,8 @@ "parent_code": "FP-03", "sort_order": 21248, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-03-04-01", @@ -9833,7 +9373,8 @@ "level": 3, "parent_code": "FP-03-04", "sort_order": 21504, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-03-04-02", @@ -9842,7 +9383,8 @@ "level": 3, "parent_code": "FP-03-04", "sort_order": 21760, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-03-04-03", @@ -9869,10 +9411,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "노면정지", - "노면굴기" - ], + "variant_key": [], "condition_note": [ "종 별", "인 부", @@ -9891,7 +9430,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-03-05", @@ -9918,17 +9458,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "모든 벌채산물 임내존치지역", - "휴경지 등 정리", - "관목지 등 정리", - "산불 등 피해지 정리", - "불량림 정리", - "벌채부산물 임내존치지역", - "임업기계장비 이용 정리", - "벌채와 동시정리지역", - "모든 벌채부산물 반출" - ], + "variant_key": [], "condition_note": [ "구 분", "작업내용", @@ -9992,7 +9522,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-03-06", @@ -10019,10 +9550,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "10㎥ 미만", - "임내 정리" - ], + "variant_key": [], "condition_note": [ "구 분", "정리산물(㎥/ha)", @@ -10059,7 +9587,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-03-07", @@ -10086,12 +9615,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "10㎥ 미만", - "10m이하", - "20m이하", - "30m이하" - ], + "variant_key": [], "condition_note": [ "수 집 거 리", "재해산물 수집량(㎥/ha)", @@ -10156,7 +9680,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-03-08", @@ -10183,14 +9708,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "드론조종자 (건설기계조종원)", - "계", - "① 촬영 계획 수립", - "② 드론 촬영(RTK 포함)", - "③ 영상 처리 및 정사영상 생성", - "④ 결과물 점검 및 보고서 작성" - ], + "variant_key": [], "condition_note": [ "종 별", "소요인력(인)" @@ -10234,7 +9752,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-04", @@ -10244,7 +9763,8 @@ "parent_code": null, "sort_order": 23296, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-04-01", @@ -10271,32 +9791,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "위치 및 임․소반", - "구분", - "단 위 작 업 별", - "- 직접노무비", - "ㆍ경급별(cm)", - "6", - "8", - "10", - "12", - "14", - "16", - "18", - "20", - "22", - "24", - "26", - "28", - "30", - "32", - "34", - "36", - "38", - "40", - "42" - ], + "variant_key": [], "condition_note": [ "소나무재선충병방제 단가산출서(예시)" ], @@ -11732,7 +11227,8 @@ ] } ], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-04-01-01", @@ -11759,12 +11255,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "벌도목 구분", - "단목", - "전간목", - "전목" - ], + "variant_key": [], "condition_note": [ "(단위 : ㎥/1인/1일)" ], @@ -11791,7 +11282,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-04-01-02", @@ -11818,10 +11310,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "벌도ㆍ조재 공정량(㎥)", - "59.20" - ], + "variant_key": [], "condition_note": [ "(단위 : ㎥/1인/1일)" ], @@ -11853,9 +11342,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "154" - ], + "variant_key": [], "condition_note": [ "조재 공정량(㎥)", "인력구분" @@ -11867,7 +11354,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-04-02", @@ -11896,32 +11384,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "위치 및 임․소반", - "구분", - "단 위 작 업 별", - "- 직접노무비", - "ㆍ경급별(cm)", - "10cm이하", - "12~14㎝", - "16~18㎝", - "20~22㎝", - "24~26㎝", - "28~30㎝", - "32~34㎝", - "ㆍ작업보조", - "ㆍ벌목작업안전 보조", - "- 재료비(체인톱)", - "ㆍ 보통휘발유(주연료)", - "ㆍ 보통휘발유(잡품)", - "ㆍ 체인오일(일반오일)", - "- 기계경비(체인톱)", - "2. 작업로설치", - "ㆍ 소작업로", - "ㆍ 대작업로", - "3. 산물수집", - "4. 집적" - ], + "variant_key": [], "condition_note": [ "ha당 참나무시들음병방제 단가산출서(예시)" ], @@ -12699,7 +12162,8 @@ ] } ], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-04-02-01", @@ -12728,21 +12192,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "벌목", - "10㎝이하", - "12~14㎝", - "16~18㎝", - "20~22㎝", - "24~26㎝", - "28~30㎝", - "32~34㎝", - "36~38㎝", - "40~42㎝", - "44~46㎝", - "48㎝ 이상", - "작업보조" - ], + "variant_key": [], "condition_note": [ "제거 대상목 흉고직경", "소요인력(인)", @@ -12856,7 +12306,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-04-02-02", @@ -12887,9 +12338,8 @@ "capacity_formula_here": false, "variant_key": [ "5m 미만", - "벌목부 보통인부", - "굴착기+부착용집게", - "비고" + "5m이상~8m미만", + "8m 이상" ], "condition_note": [ "구 분", @@ -12932,6 +12382,11 @@ ] ] } + ], + "variant_keys": [ + "5m 미만", + "5m이상~8m미만", + "8m 이상" ] }, { @@ -12961,14 +12416,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "특별인부", - "16~20cm", - "22~30cm", - "32~40cm", - "42~50cm", - "52cm이상" - ], + "variant_key": [], "condition_note": [ "가슴높이지름 (cm)", "소요인력(인/본당)", @@ -13025,7 +12473,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-04-04", @@ -13052,9 +12501,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "보통인부" - ], + "variant_key": [], "condition_note": [ "명 칭", "1종", @@ -13068,7 +12515,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-04-05", @@ -13095,9 +12543,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "0.13인" - ], + "variant_key": [], "condition_note": [ "소요인력(인)", "인력구분" @@ -13109,7 +12555,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-04-06", @@ -13136,9 +12583,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "1인" - ], + "variant_key": [], "condition_note": [ "소요인력(인)", "인력구분" @@ -13150,7 +12595,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05", @@ -13160,7 +12606,8 @@ "parent_code": null, "sort_order": 26112, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-05-01", @@ -13170,7 +12617,8 @@ "parent_code": "FP-05", "sort_order": 26368, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-05-01-01", @@ -13201,8 +12649,9 @@ "capacity_formula_here": false, "variant_key": [ "0.3m 미만", - "특 별 인 부", - "보 통 인 부" + "0.3∼0.7m 이하", + "0.8∼1.1m 이하", + "1.2∼1.5m 이하" ], "condition_note": [ "구 분", @@ -13232,6 +12681,12 @@ ] ] } + ], + "variant_keys": [ + "0.3m 미만", + "0.3∼0.7m 이하", + "0.8∼1.1m 이하", + "1.2∼1.5m 이하" ] }, { @@ -13262,7 +12717,6 @@ ], "capacity_formula_here": false, "variant_key": [ - "특별인부", "1.0 이하", "1.1∼1.5", "1.6∼2.0", @@ -13271,8 +12725,7 @@ "3.1∼3.5", "3.6∼4.0", "4.1∼4.5", - "4.6∼5.0", - "비 고" + "4.6∼5.0" ], "condition_note": [ "나무높이(m)", @@ -13336,6 +12789,17 @@ ] ] } + ], + "variant_keys": [ + "1.0 이하", + "1.1∼1.5", + "1.6∼2.0", + "2.1∼2.5", + "2.6∼3.0", + "3.1∼3.5", + "3.6∼4.0", + "4.1∼4.5", + "4.6∼5.0" ] }, { @@ -13365,27 +12829,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "특별인부(인)", - "4이하", - "5(4이하)", - "6 ∼ 7(5 ∼ 6)", - "8 ∼ 9(7 ∼ 8)", - "10 ∼ 11(9)", - "12 ∼ 14(10 ∼ 12)", - "15 ∼ 17(13 ∼ 14)", - "18 ∼ 19(15 ∼ 16)", - "20 ∼ 24(17 ∼ 20)", - "25 ∼ 29(21 ∼ 24)", - "30 ∼ 34(25 ∼ 28)", - "35 ∼ 39(29 ∼ 32)", - "40 ∼ 44(33 ∼ 37)", - "45 ∼ 49(38 ∼ 41)", - "50 ∼ 54(42 ∼ 45)", - "55 ∼ 59(46 ∼ 49)", - "60(50)", - "비 고" - ], + "variant_key": [], "condition_note": [ "근원(흉고)직경(㎝)", "수량" @@ -13545,12 +12989,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "10∼ 19", - "20 ∼ 26", - "27 ∼ 39", - "40 ∼ 60" - ], + "variant_key": [], "condition_note": [ "근원직경(cm)", "굴착기(㎥)", @@ -13579,7 +13018,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-01-04", @@ -13628,6 +13068,10 @@ ] ] } + ], + "variant_keys": [ + "줄떼", + "평떼" ] }, { @@ -13655,14 +13099,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "지게", - "리어카", - "우마차", - "2.5톤 트럭", - "6톤 트럭", - "8톤 트럭" - ], + "variant_key": [], "condition_note": [ "구 분", "줄떼(매)", @@ -13722,7 +13159,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-02", @@ -13749,20 +13187,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "특별인부", - "3", - "5", - "7", - "9", - "11", - "13", - "15", - "18", - "21", - "24", - "30" - ], + "variant_key": [], "condition_note": [ "근원직경(㎝)", "수 량", @@ -13868,7 +13293,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-03", @@ -13878,7 +13304,8 @@ "parent_code": "FP-05", "sort_order": 28160, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-05-03-01", @@ -13905,11 +13332,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "소묘식재", - "중묘식재", - "대묘식재" - ], + "variant_key": [], "condition_note": [ "구 분", "규 격", @@ -13954,17 +13377,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "소나무", - "낙엽송", - "잣나무", - "편백", - "삼나무", - "리기테다소나무", - "백합나무", - "가시나무류", - "※ 위 표에서 ‘노’는 ‘노지묘’이고, ‘용’은 ‘용기묘’이다. ※ 그 밖의 수종은 수종별 간장(최소 간장을 말한다) 및 근원경을 기준으로 아래와 같이 적용하되, 활엽수 삽목묘ㆍ접목묘 대묘는 이를 중묘로 본다. 구분침엽수활엽수소묘간장 20cm미만간장 30cm미만중묘간장 20cm이상 40cm미만 또는간장 40cm이상이고 근원경 8mm미만간장 30cm이상 60cm미만 또는간장 60cm이상이고 근원경 11mm미만대묘간장 40cm이상이고 근원경 8mm이상간장 60cm이상이고 근원경 11mm이상 구분 침엽수 활엽수 소묘 간장 20cm미만 간장 30cm미만 중묘 간장 20cm이상 40cm미만 또는 간장 40cm이상이고 근원경 8mm미만 간장 30cm이상 60cm미만 또는 간장 60cm이상이고 근원경 11mm미만 대묘 간장 40cm이상이고 근원경 8mm이상 간장 60cm이상이고 근원경 11mm이상" - ], + "variant_key": [], "condition_note": [ "수종별", "소 묘", @@ -14045,11 +13458,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "소묘", - "중묘", - "대묘" - ], + "variant_key": [], "condition_note": [ "구분", "침엽수", @@ -14073,7 +13482,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-03-02", @@ -14104,8 +13514,9 @@ "capacity_formula_here": false, "variant_key": [ "0.3m 미만", - "특 별 인 부", - "보 통 인 부" + "0.3∼0.7m 이하", + "0.8∼1.1m 이하", + "1.2∼1.5m 이하" ], "condition_note": [ "구 분", @@ -14135,6 +13546,12 @@ ] ] } + ], + "variant_keys": [ + "0.3m 미만", + "0.3∼0.7m 이하", + "0.8∼1.1m 이하", + "1.2∼1.5m 이하" ] }, { @@ -14166,8 +13583,9 @@ "capacity_formula_here": false, "variant_key": [ "0.3m 미만", - "특 별 인 부", - "보 통 인 부" + "0.3∼0.7m 이하", + "0.8∼1.1m 이하", + "1.2∼1.5m 이하" ], "condition_note": [ "구 분", @@ -14197,6 +13615,12 @@ ] ] } + ], + "variant_keys": [ + "0.3m 미만", + "0.3∼0.7m 이하", + "0.8∼1.1m 이하", + "1.2∼1.5m 이하" ] }, { @@ -14226,20 +13650,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "인 력 시 공", - "특별인부(인)", - "1.0 이하", - "1.1 ∼ 1.5", - "1.6 ∼ 2.0", - "2.1 ∼ 2.5", - "2.6 ∼ 3.0", - "3.1 ∼ 3.5", - "3.6 ∼ 4.0", - "4.1 ∼ 4.5", - "4.6 ∼ 5.0", - "비고" - ], + "variant_key": [], "condition_note": [ "나 무 높 이(m)", "수 량" @@ -14360,9 +13771,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "인력품의 10%" - ], + "variant_key": [], "condition_note": [ "인력시공시", "기계시공시" @@ -14374,7 +13783,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-03-05", @@ -14403,25 +13813,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "특별인부(인)", - "4(5)이하", - "5(6)", - "6 ∼ 7(7 ∼ 8)", - "8 ∼ 9(9 ∼ 11)", - "10 ∼ 11(12 ∼ 13)", - "12 ∼ 14(14 ∼ 17)", - "15 ∼ 17(18 ∼ 20)", - "18 ∼ 19(21 ∼ 23)", - "20 ∼ 24(24 ∼ 29)", - "25 ∼ 29(30 ∼ 35)", - "30 ∼ 34(36 ∼ 41)", - "35 ∼ 39(42 ∼ 47)", - "40 ∼ 44(48 ∼ 53)", - "45 ∼ 49(54 ∼ 59)", - "50(60)", - "비고" - ], + "variant_key": [], "condition_note": [ "흉고(근원)직경(㎝)", "수 량" @@ -14565,9 +13957,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "인력품의 10%" - ], + "variant_key": [], "condition_note": [ "인력시공시", "기계시공시" @@ -14598,12 +13988,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "8 ∼ 17", - "18 ∼ 22", - "23 ∼ 34", - "35 ∼ 50" - ], + "variant_key": [], "condition_note": [ "흉고직경(cm)", "굴착기(㎥)", @@ -14632,7 +14017,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-04", @@ -14661,13 +14047,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "파종상 만들기", - "80cm×80cm×5,000개", - "파종상에 점파", - "파종상 없이", - "점 파" - ], + "variant_key": [], "condition_note": [ "구 분", "내 용", @@ -14707,7 +14087,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-05", @@ -14737,10 +14118,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "지면긁기작업", - "폭 80cm × 열간거리 2m (전면적의 40%)" - ], + "variant_key": [], "condition_note": [ "구 분", "내 용", @@ -14762,7 +14140,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-06", @@ -14789,9 +14168,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "맹아근주 정리작업" - ], + "variant_key": [], "condition_note": [ "구 분", "내 용", @@ -14807,7 +14184,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-07", @@ -14834,11 +14212,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "움싹본수조절", - "치수이식", - "보완조림" - ], + "variant_key": [], "condition_note": [ "구 분", "내 용", @@ -14866,7 +14240,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-08", @@ -14895,9 +14270,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "큰나무 식재" - ], + "variant_key": [], "condition_note": [ "구 분", "규 격", @@ -14913,7 +14286,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-09", @@ -14940,9 +14314,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "보통인부" - ], + "variant_key": [], "condition_note": [ "구 분", "식 혈", @@ -14958,7 +14330,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-10", @@ -14987,14 +14360,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "묘목", - "요소", - "인산", - "운반비", - "특별인부", - "보통인부" - ], + "variant_key": [], "condition_note": [ "명 칭", "규 격", @@ -15047,7 +14413,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-11", @@ -15074,9 +14441,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "보통인부(인)" - ], + "variant_key": [], "condition_note": [ "구 분", "사초굴취", @@ -15092,7 +14457,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-12", @@ -15121,10 +14487,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "줄떼", - "평떼" - ], + "variant_key": [], "condition_note": [ "구 분", "보통인부(인)", @@ -15143,7 +14506,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-13", @@ -15192,6 +14556,10 @@ ] ] } + ], + "variant_keys": [ + "줄떼심기", + "띠떼심기" ] }, { @@ -15219,14 +14587,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "새채집", - "요소", - "인산", - "보통인부 (채집)", - "보통인부 (심기)", - "새운반" - ], + "variant_key": [], "condition_note": [ "공정별", "단 위", @@ -15272,7 +14633,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-15", @@ -15301,11 +14663,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "말뚝", - "보통인부", - "특별인부" - ], + "variant_key": [], "condition_note": [ "명 칭", "규 격", @@ -15337,7 +14695,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-16", @@ -15347,7 +14706,8 @@ "parent_code": "FP-05", "sort_order": 32768, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-05-16-01", @@ -15376,11 +14736,8 @@ "capacity_formula_here": false, "variant_key": [ "보통토사", - "절 취", - "수평잡기 및 단정리", - "잡석 및 뿌리 정리", - "절·성토면 고르기", - "합계" + "경질ㆍ고사점토 및 자갈섞인 점토", + "호박돌 섞인 토사" ], "condition_note": [ "공정별", @@ -15432,6 +14789,11 @@ ] ] } + ], + "variant_keys": [ + "보통토사", + "경질ㆍ고사점토 및 자갈섞인 점토", + "호박돌 섞인 토사" ] }, { @@ -15459,12 +14821,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "단끊기", - "떼붙임", - "떼운반", - "떼 지게운반" - ], + "variant_key": [], "condition_note": [ "공정별", "단 위", @@ -15498,7 +14855,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-17", @@ -15508,7 +14866,8 @@ "parent_code": "FP-05", "sort_order": 33536, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-05-17-01", @@ -15535,12 +14894,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "단끊기", - "줄떼심기", - "떼운반", - "떼 지게운반" - ], + "variant_key": [], "condition_note": [ "공정별", "단 위", @@ -15574,7 +14928,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-17-02", @@ -15601,11 +14956,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "단끊기", - "돌쌓기", - "돌운반" - ], + "variant_key": [], "condition_note": [ "공정별", "단 위", @@ -15633,7 +14984,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-18", @@ -15660,16 +15012,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "종자", - "비료", - "비토", - "객토", - "골파기", - "씨덮기", - "특별인부", - "보통인부" - ], + "variant_key": [], "condition_note": [ "공정별", "단 위", @@ -15727,7 +15070,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-19", @@ -15737,7 +15081,8 @@ "parent_code": "FP-05", "sort_order": 34560, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-05-19-01", @@ -15764,10 +15109,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "6", - "표토절취" - ], + "variant_key": [], "condition_note": [ "구 분", "직 종", @@ -15794,7 +15136,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-19-02", @@ -15821,11 +15164,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "15", - "㎥ 당", - "100㎡" - ], + "variant_key": [], "condition_note": [ "구 분", "직 종", @@ -15856,7 +15195,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-20", @@ -15883,11 +15223,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "표토채취", - "굴착기(무한궤도, 0.7㎥)", - "표토붙이기" - ], + "variant_key": [], "condition_note": [ "공 정", "구 분", @@ -15921,7 +15257,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-21", @@ -15949,8 +15286,8 @@ "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ - "채 취", - "운 반", + "채 취", + "운 반", "붙이기" ], "condition_note": [ @@ -15976,6 +15313,11 @@ ] ] } + ], + "variant_keys": [ + "채 취", + "운 반", + "붙이기" ] }, { @@ -15986,7 +15328,8 @@ "parent_code": "FP-05", "sort_order": 35840, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-05-22-01", @@ -15995,7 +15338,8 @@ "level": 3, "parent_code": "FP-05-22", "sort_order": 36096, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-05-22-02", @@ -16022,10 +15366,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "조경공", - "보통인부" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -16047,7 +15388,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-22-03", @@ -16074,9 +15416,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "보통인부" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -16092,7 +15432,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-22-04", @@ -16119,11 +15460,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "조경공", - "보통인부", - "트럭" - ], + "variant_key": [], "condition_note": [ "구 분", "규 격", @@ -16155,7 +15492,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-23", @@ -16165,7 +15503,8 @@ "parent_code": "FP-05", "sort_order": 37120, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-05-23-01", @@ -16174,7 +15513,8 @@ "level": 3, "parent_code": "FP-05-23", "sort_order": 37376, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-05-23-02", @@ -16201,10 +15541,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "조경공", - "보통인부" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -16226,7 +15563,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-23-03", @@ -16253,9 +15591,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "보통인부" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -16271,7 +15607,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-24", @@ -16281,7 +15618,8 @@ "parent_code": "FP-05", "sort_order": 38144, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-05-24-01", @@ -16315,18 +15653,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "자재", - "비 료", - "피 복 제", - "침식안정제", - "색 소", - "장비", - "트 럭", - "물 탱 크", - "인력", - "보 통 인 부" - ], + "variant_key": [], "condition_note": [ "구 분", "규 격", @@ -16417,7 +15744,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-24-02", @@ -16450,18 +15778,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "자재", - "비 료", - "피 복 제", - "침식안정제", - "색 소", - "장비", - "트 럭", - "물 탱 크", - "인력", - "보통인부" - ], + "variant_key": [], "condition_note": [ "구 분", "규 격", @@ -16571,14 +15888,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "초본 위주형", - "초본, 야생화류", - "외래초종(양잔디류)", - "합 계", - "초본ㆍ관목 혼합형", - "목본 군락형" - ], + "variant_key": [], "condition_note": [ "복원목표", "식 생 구 분", @@ -16666,14 +15976,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "초본 위주형", - "초본, 야생화류", - "외래초종(양잔디류)", - "합 계", - "초본·관목 혼합형", - "목본 군락형" - ], + "variant_key": [], "condition_note": [ "복원목표", "식 생 구 분", @@ -16742,7 +16045,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-25", @@ -16769,11 +16073,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "자재", - "인력", - "보통인부" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -16804,7 +16104,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-26", @@ -16814,7 +16115,8 @@ "parent_code": "FP-05", "sort_order": 39168, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-05-26-01", @@ -16841,12 +16143,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "9", - "사토", - "양토", - "식토" - ], + "variant_key": [], "condition_note": [ "토성", "막갈이깊이(cm)" @@ -16886,7 +16183,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-26-02", @@ -16913,12 +16211,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "9", - "사토", - "양토", - "식토" - ], + "variant_key": [], "condition_note": [ "토성", "막갈이깊이(cm)" @@ -16958,7 +16251,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-26-03", @@ -16987,11 +16281,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "10% 이내", - "개답", - "개전" - ], + "variant_key": [], "condition_note": [ "토성", "경토깊이(cm)" @@ -17017,7 +16307,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-27", @@ -17044,10 +16335,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "조경공", - "보통인부" - ], + "variant_key": [], "condition_note": [ "구 분", "수량", @@ -17066,7 +16354,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-28", @@ -17076,7 +16365,8 @@ "parent_code": "FP-05", "sort_order": 40448, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-05-28-01", @@ -17103,10 +16393,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "특 별 인 부", - "보 통 인 부" - ], + "variant_key": [], "condition_note": [ "구 분", "수 량", @@ -17125,7 +16412,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-28-02", @@ -17157,8 +16445,7 @@ "capacity_formula_here": false, "variant_key": [ "폭 1.5m 이하", - "조 경 공", - "보 통 인 부" + "폭 2.0m 이하" ], "condition_note": [ "구 분", @@ -17190,6 +16477,10 @@ ] ] } + ], + "variant_keys": [ + "폭 1.5m 이하", + "폭 2.0m 이하" ] }, { @@ -17219,12 +16510,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "K(버킷계수)", - "f(체적환산계수)", - "E(작업효율)", - "Cm(1회 사이클시간)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -17253,7 +16539,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-30", @@ -17280,9 +16567,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "표시봉 설치" - ], + "variant_key": [], "condition_note": [ "구 분", "규 격", @@ -17298,7 +16583,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-31", @@ -17325,9 +16611,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "지주목 설치" - ], + "variant_key": [], "condition_note": [ "구 분", "규 격", @@ -17343,7 +16627,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-32", @@ -17370,9 +16655,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "대 절" - ], + "variant_key": [], "condition_note": [ "구 분", "사용도구", @@ -17388,7 +16671,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-33", @@ -17415,10 +16699,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "소묘, 중묘", - "대 묘" - ], + "variant_key": [], "condition_note": [ "구 분", "소요인력", @@ -17437,7 +16718,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-05-34", @@ -17464,11 +16746,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "소 묘", - "중 묘", - "대 묘" - ], + "variant_key": [], "condition_note": [ "구 분", "소요인력", @@ -17492,7 +16770,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-06", @@ -17502,7 +16781,8 @@ "parent_code": null, "sort_order": 42752, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-06-01", @@ -17529,11 +16809,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "인공림(10년이하 조림지)", - "인공림(10년초과 성림지)", - "천연림" - ], + "variant_key": [], "condition_note": [ "구 분", "소요인력 (인/100kg)", @@ -17557,7 +16833,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-06-02", @@ -17567,7 +16844,8 @@ "parent_code": "FP-06", "sort_order": 43264, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-06-02-01", @@ -17594,9 +16872,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "낫" - ], + "variant_key": [], "condition_note": [ "사용도구", "단위", @@ -17612,7 +16888,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-06-02-02", @@ -17639,12 +16916,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "묘목찾기", - "줄 베 기", - "1,500본 이상 3,000본 미만", - "3,000본 이상" - ], + "variant_key": [], "condition_note": [ "공 법", "사용도구", @@ -17687,7 +16959,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-06-02-03", @@ -17714,12 +16987,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "묘목찾기", - "모두베기", - "조림 2년차", - "조림 3년차 이상" - ], + "variant_key": [], "condition_note": [ "공 법", "사용도구", @@ -17762,7 +17030,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-06-03", @@ -17789,9 +17058,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "괭이, 도끼 등" - ], + "variant_key": [], "condition_note": [ "사용도구", "단위", @@ -17807,7 +17074,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-06-04", @@ -17817,7 +17085,8 @@ "parent_code": "FP-06", "sort_order": 44544, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-06-04-01", @@ -17844,9 +17113,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "기계작업" - ], + "variant_key": [], "condition_note": [ "구 분", "사용도구", @@ -17864,7 +17131,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-06-04-02", @@ -17891,10 +17159,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "약제살포", - "작업보조" - ], + "variant_key": [], "condition_note": [ "구 분", "사용도구", @@ -17919,7 +17184,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-06-04-03", @@ -17948,13 +17214,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "소금 처리", - "2 ~ 6㎝미만", - "6 ~ 8㎝미만", - "8㎝ 이상", - "덩굴 제거지점 표시" - ], + "variant_key": [], "condition_note": [ "구 분", "주두부 직경", @@ -18000,7 +17260,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-06-04-04", @@ -18029,12 +17290,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "뿌리 고살", - "1 ~ 4㎝", - "4㎝ 초과", - "덩굴 제거지점 표시" - ], + "variant_key": [], "condition_note": [ "구 분", "주두부 직경", @@ -18092,13 +17348,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "80% 이상", - "60∼80%", - "40∼60%", - "20∼40%", - "20%이하" - ], + "variant_key": [], "condition_note": [ "덩굴 피복도(%)", "할인ㆍ할증율", @@ -18138,7 +17388,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-06-05", @@ -18165,11 +17416,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "특별인부 (체인톱 사용)", - "유령림 단계", - "보통인부 (작업 보조)" - ], + "variant_key": [], "condition_note": [ "인력구분", "대상지 유형", @@ -18201,7 +17448,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-06-06", @@ -18230,15 +17478,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "0~0.5m", - "0.5~1m", - "0~1m", - "0~2m", - "0~4m", - "2~4m", - "4~6m" - ], + "variant_key": [], "condition_note": [ "가지치기 높이", "소나무 낙엽송", @@ -18306,7 +17546,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-06-07", @@ -18316,7 +17557,8 @@ "parent_code": "FP-06", "sort_order": 46336, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-06-07-01", @@ -18345,11 +17587,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "11미만", - "특별인부", - "보통인부" - ], + "variant_key": [], "condition_note": [ "구 분", "수량(근원직경 ㎝)" @@ -18381,7 +17619,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-06-07-02", @@ -18408,10 +17647,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "특 별 인 부", - "보 통 인 부" - ], + "variant_key": [], "condition_note": [ "명 칭", "수 량", @@ -18430,7 +17666,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-06-07-03", @@ -18460,11 +17697,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "특 별 인 부", - "보 통 인 부", - "트 럭(2.5t)" - ], + "variant_key": [], "condition_note": [ "명 칭", "단 위", @@ -18488,7 +17721,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-06-08", @@ -18518,11 +17752,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "우 드 칩", - "보 통 인 부", - "소 운 반" - ], + "variant_key": [], "condition_note": [ "구 분", "규 격", @@ -18550,7 +17780,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07", @@ -18560,7 +17791,8 @@ "parent_code": null, "sort_order": 47616, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-07-01", @@ -18570,7 +17802,8 @@ "parent_code": "FP-07", "sort_order": 47872, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-07-01-01", @@ -18597,11 +17830,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "100m이하", - "200m이하", - "300m이하" - ], + "variant_key": [], "condition_note": [ "구 분", "어려움 (15˚ 미만)", @@ -18652,12 +17881,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "ha당원목재적 평균거리", - "100m이하", - "200m이하", - "300m이하" - ], + "variant_key": [], "condition_note": [ "경사", "어려움(15˚ 미만)", @@ -18731,12 +17955,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "ha당원목재적 평균거리", - "100m이하", - "200m이하", - "300m이하" - ], + "variant_key": [], "condition_note": [ "경사", "어려움(15˚미만)", @@ -18806,7 +18025,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-01-02", @@ -18833,15 +18053,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "8", - "10m이하", - "병해충방제", - "20m이하", - "30m이하", - "40m이하", - "50m이하" - ], + "variant_key": [], "condition_note": [ "집 재 거 리", "구분", @@ -18994,7 +18206,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-02", @@ -19023,13 +18236,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "20이하㎥", - "0~100m", - "0~150m", - "0~200m", - "0~250m" - ], + "variant_key": [], "condition_note": [ "집재거리", "ha당 집재재적", @@ -19083,7 +18290,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-03", @@ -19110,9 +18318,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "50m 내외" - ], + "variant_key": [], "condition_note": [ "집재거리", "수집량", @@ -19126,7 +18332,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-04", @@ -19136,7 +18343,8 @@ "parent_code": "FP-07", "sort_order": 49152, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-07-04-01", @@ -19163,19 +18371,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "50이하", - "0.1", - "0.2", - "0.3", - "0.4", - "0.5", - "0.6", - "0.7", - "0.8", - "0.9", - "1.0" - ], + "variant_key": [], "condition_note": [ "본당재적 (㎥)", "집재거리(m)", @@ -19272,7 +18468,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-04-02", @@ -19299,10 +18496,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "20m이하", - "집재량" - ], + "variant_key": [], "condition_note": [ "구 분", "집 재 거 리", @@ -19329,7 +18523,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-05", @@ -19339,7 +18534,8 @@ "parent_code": "FP-07", "sort_order": 49920, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-07-05-01", @@ -19366,19 +18562,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "30이하", - "0.1", - "0.2", - "0.3", - "0.4", - "0.5", - "0.6", - "0.7", - "0.8", - "0.9", - "1.0" - ], + "variant_key": [], "condition_note": [ "본당재적 (㎥)", "집재거리(m)", @@ -19475,7 +18659,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-05-02", @@ -19504,14 +18689,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "0.1∼0.2㎥", - "0∼40m", - "0∼60m", - "0∼80m", - "0∼100m", - "0∼120m" - ], + "variant_key": [], "condition_note": [ "집재거리", "본당 평균재적", @@ -19562,7 +18740,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-06", @@ -19589,10 +18768,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "60m 이하", - "26㎥" - ], + "variant_key": [], "condition_note": [ "집재거리(m)", "인력구분" @@ -19610,7 +18786,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-07", @@ -19620,7 +18797,8 @@ "parent_code": "FP-07", "sort_order": 50944, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-07-07-01", @@ -19647,19 +18825,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "50이하", - "0.1", - "0.2", - "0.3", - "0.4", - "0.5", - "0.6", - "0.7", - "0.8", - "0.9", - "1.0" - ], + "variant_key": [], "condition_note": [ "본당재적 (㎥)", "집재거리(m)", @@ -19756,7 +18922,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-07-02", @@ -19785,14 +18952,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "100m 이하", - "0∼20㎥", - "21∼40㎥", - "41∼60㎥", - "61∼80㎥", - "81∼100㎥" - ], + "variant_key": [], "condition_note": [ "집재재적 (㎥/ha)", "집재거리", @@ -19843,7 +19003,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-08", @@ -19853,7 +19014,8 @@ "parent_code": "FP-07", "sort_order": 51712, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-07-08-01", @@ -19880,11 +19042,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "120m 이하", - "상향집재", - "하향집재" - ], + "variant_key": [], "condition_note": [ "집재방식", "작업로(가선)의 길이", @@ -19923,7 +19081,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-08-02", @@ -19950,11 +19109,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "120m 이하", - "상향집재", - "하향집재" - ], + "variant_key": [], "condition_note": [ "집재방식", "작업로(가선)의 길이", @@ -19993,7 +19148,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-08-03", @@ -20020,19 +19176,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "100m이하", - "0.1", - "0.2", - "0.3", - "0.4", - "0.5", - "0.6", - "0.7", - "0.8", - "0.9", - "1.0" - ], + "variant_key": [], "condition_note": [ "본당재적 (㎥)", "집재거리(m)", @@ -20129,7 +19273,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-09", @@ -20139,7 +19284,8 @@ "parent_code": "FP-07", "sort_order": 52736, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-07-09-01", @@ -20168,14 +19314,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "100m 이하", - "0~20㎥", - "21~40㎥", - "41~60㎥", - "61~80㎥", - "81~100㎥" - ], + "variant_key": [], "condition_note": [ "집재재적 (㎥/ha)", "집재거리", @@ -20232,7 +19371,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-09-02", @@ -20261,14 +19401,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "100m 이하", - "0~20㎥", - "21~40㎥", - "41~60㎥", - "61~80㎥", - "81~100㎥" - ], + "variant_key": [], "condition_note": [ "집재재적 (㎥/ha)", "집재거리", @@ -20344,14 +19477,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "100m 이하", - "0~20㎥", - "21~40㎥", - "41~60㎥", - "61~80㎥", - "81~100㎥" - ], + "variant_key": [], "condition_note": [ "노선별 집재재적(㎥/ha)", "집재거리" @@ -20401,7 +19527,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-10", @@ -20430,10 +19557,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "20㎥ 미만", - "작업량" - ], + "variant_key": [], "condition_note": [ "구 분", "ha당 평균 작업량", @@ -20456,7 +19580,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-11", @@ -20485,13 +19610,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "원목의 길이", - "1.2m", - "41∼60", - "61∼80", - "81이상" - ], + "variant_key": [], "condition_note": [ "집 재 재 적 (㎥/ha)", "최대집재거리 : 40m 이하", @@ -20564,13 +19683,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "원목의 길이", - "1.2m", - "41∼60", - "61∼80", - "81이상" - ], + "variant_key": [], "condition_note": [ "집 재 재 적 (㎥/ha)", "최대집재거리 : 80m 이하", @@ -20641,9 +19754,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "원목집재와 동시에 부산물 수집시" - ], + "variant_key": [], "condition_note": [ "구 분", "소요인력" @@ -20656,7 +19767,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-12", @@ -20685,13 +19797,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "9㎝ 이하", - "1.8m", - "2.1m", - "2.7m", - "3.6m" - ], + "variant_key": [], "condition_note": [ "원목(생산재)의 길이", "원목의 직경(말구 평균직경)", @@ -20750,7 +19856,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-13", @@ -20777,9 +19884,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "생산목 검척" - ], + "variant_key": [], "condition_note": [ "구 분", "소요인력(인/100㎥당)", @@ -20810,18 +19915,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "2.1m", - "8", - "10", - "12", - "14", - "16", - "18", - "20", - "22", - "합계" - ], + "variant_key": [], "condition_note": [ "재장", "말구직경", @@ -20891,7 +19985,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-14", @@ -20920,12 +20015,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "1회 적 재 량", - "용 재 (원목)", - "침 엽 수 (포플러과 포함)", - "저 나 르 기 트 럭 집 재 뗏 목 토 장 집 재" - ], + "variant_key": [], "condition_note": [ "종 별", "공 정" @@ -20973,7 +20063,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-15", @@ -20983,7 +20074,8 @@ "parent_code": "FP-07", "sort_order": 54784, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-07-15-01", @@ -21010,11 +20102,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "100", - "회수", - "운반량" - ], + "variant_key": [], "condition_note": [ "구분", "주행거리(m이하)", @@ -21068,7 +20156,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-15-02", @@ -21095,11 +20184,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "0.5", - "작업회수", - "운재량" - ], + "variant_key": [], "condition_note": [ "구 분", "운반거리(㎞ 이하)", @@ -21150,7 +20235,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-16", @@ -21177,11 +20263,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "100", - "회수", - "운반량" - ], + "variant_key": [], "condition_note": [ "구분", "주행거리(m이하)", @@ -21235,7 +20317,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-17", @@ -21262,11 +20345,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "100", - "회수", - "운반량" - ], + "variant_key": [], "condition_note": [ "구분", "운반거리(m이하)", @@ -21317,7 +20396,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-07-18", @@ -21344,11 +20424,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "100", - "회 수", - "운반량" - ], + "variant_key": [], "condition_note": [ "구 분", "운반거리(m이하)", @@ -21399,7 +20475,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-08", @@ -21409,7 +20486,8 @@ "parent_code": null, "sort_order": 56320, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-08-01", @@ -21419,7 +20497,8 @@ "parent_code": "FP-08", "sort_order": 56576, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-08-01-01", @@ -21446,15 +20525,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "특별인부", - "600개 이하", - "1,300개 이하", - "2,000개 이하", - "2,700개 이하", - "3,400개 이하", - "4,100개 이하" - ], + "variant_key": [], "condition_note": [ "천공수", "소요인력(ha당)", @@ -21520,7 +20591,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-08-01-02", @@ -21547,12 +20619,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "특별인부", - "300개 이하", - "900개 이하", - "1,500개 이하" - ], + "variant_key": [], "condition_note": [ "천공수", "소요인력", @@ -21594,7 +20661,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-08-02", @@ -21604,7 +20672,8 @@ "parent_code": "FP-08", "sort_order": 57344, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-08-02-01", @@ -21633,20 +20702,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "10~12", - "14~16", - "18~20", - "22~24", - "26~28", - "30~32", - "34~36", - "38~40", - "42~44", - "46~48", - "50~52", - "54~56" - ], + "variant_key": [], "condition_note": [ "가슴높이 지름(㎝)", "천공수 (개)", @@ -21799,18 +20855,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "10~12", - "14~16", - "18~20", - "22~24", - "26~28", - "30~32", - "34~36", - "38~40", - "42~44", - "46~48" - ], + "variant_key": [], "condition_note": [ "가슴높이 지름(㎝)", "천공수 (개)", @@ -21941,14 +20986,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "아바멕틴", - "에마멕틴벤조에이트", - "아바멕틴(1.8) 설폭사플로르(4.2)", - "아세타미프리드(10) 에마멕틴벤조에이트(6)", - "아세타미프리드(8) 에마멕틴벤조에이트(2)", - "아바멕틴(1.6) 아세타미프리드(7)" - ], + "variant_key": [], "condition_note": [ "구 분", "제 형" @@ -21999,20 +21037,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "10~12", - "14~16", - "18~20", - "22~24", - "26~28", - "30~32", - "34~36", - "38~40", - "42~44", - "46~48", - "50~52", - "54~56" - ], + "variant_key": [], "condition_note": [ "가슴높이 지름(㎝)", "천공수 (개)", @@ -22165,19 +21190,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "10~16", - "18~22", - "24~26", - "28~32", - "34~36", - "38~42", - "44~46", - "48~52", - "54~56", - "58~62", - "64~66" - ], + "variant_key": [], "condition_note": [ "가슴높이지름(㎝)", "천공수 (개)", @@ -22301,7 +21314,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-08-02-02", @@ -22328,14 +21342,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "티아메톡삼 분산성액제 15%", - "디노테퓨란(15)․에마멕틴벤조에이트(4.5) 분산성액제 19.5%", - "이미다클로프리드 분산성액제 20%", - "아세타미프리드 액제 20%", - "디노테퓨란 액제 10%", - "아바멕틴(1.8)·설폭사플로르(4.2) 분산성액제 6%" - ], + "variant_key": [], "condition_note": [ "선정약제", "원액 주입량", @@ -22393,31 +21400,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "10∼12", - "14∼16", - "18∼20", - "22∼24", - "26∼28", - "30∼32", - "34∼36", - "38∼40", - "42∼44", - "46∼48", - "50∼52", - "54∼56", - "58∼60", - "62∼64", - "66∼68", - "70∼72", - "74∼76", - "78∼80", - "82∼84", - "86∼88", - "90∼92", - "94∼96", - "98∼100" - ], + "variant_key": [], "condition_note": [ "가슴높이지름 (㎝)", "천공수 (개)", @@ -22584,31 +21567,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "10∼12", - "14∼16", - "18∼20", - "22∼24", - "26∼28", - "30∼32", - "34∼36", - "38∼40", - "42∼44", - "46∼48", - "50∼52", - "54∼56", - "58∼60", - "62∼64", - "66∼68", - "70∼72", - "74∼76", - "78∼80", - "82∼84", - "86∼88", - "90∼92", - "94∼96", - "98∼100" - ], + "variant_key": [], "condition_note": [ "가슴높이지름 (㎝)", "천공수 (개)", @@ -22775,31 +21734,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "10∼12", - "14∼16", - "18∼20", - "22∼24", - "26∼28", - "30∼32", - "34∼36", - "38∼40", - "42∼44", - "46∼48", - "50∼52", - "54∼56", - "58∼60", - "62∼64", - "66∼68", - "70∼72", - "74∼76", - "78∼80", - "82∼84", - "86∼88", - "90∼92", - "94∼96", - "98∼100" - ], + "variant_key": [], "condition_note": [ "가슴높이지름 (㎝)", "천공수 (개)", @@ -22947,7 +21882,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-08-02-03", @@ -22974,13 +21910,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "디노테퓨란(15)․에마멕틴벤조에이트(4.5) 분산성액제 19.5%", - "이미다클로프리드 분산성액제 20%", - "티아메톡삼 분산성액제 15%", - "에마멕틴벤조에이트 유제 2.15%", - "아바멕틴(1.8)·설폭사플로르(4.2) 분산성액제 6%" - ], + "variant_key": [], "condition_note": [ "선정약제", "원액 주입량", @@ -23033,31 +21963,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "10∼12", - "14∼16", - "18∼20", - "22∼24", - "26∼28", - "30∼32", - "34∼36", - "38∼40", - "42∼44", - "46∼48", - "50∼52", - "54∼56", - "58∼60", - "62∼64", - "66∼68", - "70∼72", - "74∼76", - "78∼80", - "82∼84", - "86∼88", - "90∼92", - "94∼96", - "98∼100" - ], + "variant_key": [], "condition_note": [ "가슴높이지름 (㎝)", "천공수 (개)", @@ -23224,31 +22130,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "10∼12", - "14∼16", - "18∼20", - "22∼24", - "26∼28", - "30∼32", - "34∼36", - "38∼40", - "42∼44", - "46∼48", - "50∼52", - "54∼56", - "58∼60", - "62∼64", - "66∼68", - "70∼72", - "74∼76", - "78∼80", - "82∼84", - "86∼88", - "90∼92", - "94∼96", - "98∼100" - ], + "variant_key": [], "condition_note": [ "가슴높이지름 (㎝)", "천공수 (개)", @@ -23415,31 +22297,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "10∼12", - "14∼16", - "18∼20", - "22∼24", - "26∼28", - "30∼32", - "34∼36", - "38∼40", - "42∼44", - "46∼48", - "50∼52", - "54∼56", - "58∼60", - "62∼64", - "66∼68", - "70∼72", - "74∼76", - "78∼80", - "82∼84", - "86∼88", - "90∼92", - "94∼96", - "98∼100" - ], + "variant_key": [], "condition_note": [ "가슴높이지름 (㎝)", "천공수 (개)", @@ -23604,32 +22462,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "사업 구분", - "1-4-1", - "6-4-4 뿌리제거", - "1-4-2", - "1-4-3", - "6-2-2 풀베기(줄베기)", - "6-4-1 덩굴걷기", - "1-4-4", - "1-4-5", - "5-5천연하종갱신", - "6-1 비료주기", - "숲가꾸기", - "4-2-1 단목베기", - "6-2-3 풀베기(모두베기)", - "6-4-2 덩굴약제 살포처리", - "6-5 어린나무가꾸기", - "7-2 수라집재", - "7-5-2 트랙터부착형집재(지면끌기)", - "7-9-2 부탁형 타워 (K-301, HAM300)", - "국유임산물 (수확)", - "7-6 스윙야더 집재", - "7-9-1 부탁형 타워 (K-301, HAM300)", - "산림병해충방제", - "7-1-2 인력집재" - ], + "variant_key": [], "condition_note": [ "번호", "할인․할증 요소", @@ -24287,32 +23120,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "공종", - "조림", - "5-32 대절작업", - "5-5 천연하종갱신", - "6-1 비료주기", - "지침 외", - "5-3-2 관목식재(단식)", - "10-13 드론운반공", - "숲가 꾸기", - "6-2-2 줄베기 (풀베기)", - "6-4-2 덩굴 약제 살포처리", - "4-2-1 단목베기", - "7-3아키야윈치 (임업용 윈치)", - "7-15-2 초소형포워더 운재", - "7-9-2 부착형타워 K-301, HAM300 (중형가선)", - "국유 임산물 수확", - "7-4-1 소형가선집재 (2드럼윈치)", - "7-8-3 타워야더 RME-300T", - "7-1-1 인력집재 (수확)", - "7-18 지조운반 (포워더 활용)", - "3-4-2 임산물 운반로 및 작업로 신설", - "산림 병해충 방제", - "8-1-2 약제주입병", - "8-2-5 약제주입기준 (푸사리움가지마름병)" - ], + "variant_key": [], "condition_note": [ "사업종", "구분", @@ -24900,32 +23708,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "위치 및 면적", - "구분", - "단 위 작 업 별", - "- 직접노무비", - "ㆍ벌채부산물 임내정리 (벌채와 동시 정리지역)", - "- 재료비(체인톱)", - "ㆍ보통휘발유(주연료)", - "ㆍ보통휘발유(잡품)", - "ㆍ체인오일(친환경)", - "- 기계경비(체인톱)", - "2. 식 재", - "ㆍ식재작업", - "ㆍ표시봉설치", - "ㆍ소운반", - "- 재료비", - "ㆍ묘목", - "ㆍ표시봉", - "- 경 비", - "ㆍ대운반", - "합 계", - "직접노무비", - "재 료 비", - "경비(기계경비)", - "<할인․할증률 적용>" - ], + "variant_key": [], "condition_note": [ "ha당 조림 단가산출서(예시)" ], @@ -25478,7 +24261,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-08-02-04", @@ -25505,9 +24289,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "아바멕틴(1.8)·설폭사플로르(4.2) 분산성액제 6%" - ], + "variant_key": [], "condition_note": [ "선정약제", "원액 주입량", @@ -25540,31 +24322,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "10∼12", - "14∼16", - "18∼20", - "22∼24", - "26∼28", - "30∼32", - "34∼36", - "38∼40", - "42∼44", - "46∼48", - "50∼52", - "54∼56", - "58∼60", - "62∼64", - "66∼68", - "70∼72", - "74∼76", - "78∼80", - "82∼84", - "86∼88", - "90∼92", - "94∼96", - "98∼100" - ], + "variant_key": [], "condition_note": [ "가슴높이지름 (㎝)", "천공수 (개)", @@ -25712,7 +24470,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-08-02-05", @@ -25739,9 +24498,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "테부코나졸 유탁제 25%" - ], + "variant_key": [], "condition_note": [ "선정약제", "원액 주입량", @@ -25774,31 +24531,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "10∼12", - "14∼16", - "18∼20", - "22∼24", - "26∼28", - "30∼32", - "34∼36", - "38∼40", - "42∼44", - "46∼48", - "50∼52", - "54∼56", - "58∼60", - "62∼64", - "66∼68", - "70∼72", - "74∼76", - "78∼80", - "82∼84", - "86∼88", - "90∼92", - "94∼96", - "98∼100" - ], + "variant_key": [], "condition_note": [ "가슴높이지름 (㎝)", "천공수 (개)", @@ -25946,7 +24679,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-08-03", @@ -25973,31 +24707,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "6", - "8", - "10", - "12", - "14", - "16", - "18", - "20", - "22", - "24", - "26", - "28", - "30", - "32", - "34", - "36", - "38", - "40", - "42", - "44", - "46", - "48", - "50이상" - ], + "variant_key": [], "condition_note": [ "경급별 (㎝)", "벌목조재 (㎥/인)", @@ -26282,22 +24992,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "4cm", - "6", - "18", - "10", - "12", - "14", - "16", - "20", - "22", - "24", - "26", - "28", - "30", - "평균" - ], + "variant_key": [], "condition_note": [ "수종 가슴 높이 지름", "소나무", @@ -26478,9 +25173,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "중부지방소나무" - ], + "variant_key": [], "condition_note": [ "기 준", "적용대상 수종", @@ -26496,7 +25189,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-08-04", @@ -26525,11 +25219,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "8롤 미만", - "롤트랩 설치", - "롤트랩 제거" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -26567,7 +25257,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-08-05", @@ -26594,11 +25285,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "트랩설치", - "트랩통수거 및 교체", - "트랩철거" - ], + "variant_key": [], "condition_note": [ "구 분", "소요인력(조/ha당)", @@ -26622,7 +25309,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-08-06", @@ -26632,7 +25320,8 @@ "parent_code": "FP-08", "sort_order": 59648, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-08-06-01", @@ -26660,13 +25349,7 @@ "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ - "특별인부", "소형헬기 (160ha당)", - "사전조사", - "헬기장정리", - "깃발설치", - "양수기설치", - "약제조제", "대형헬기 (400ha당)" ], "condition_note": [ @@ -26772,16 +25455,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "산림항공방제", - "유인헬기", - "16배", - "30배", - "50배", - "60배", - "80배", - "100배" - ], + "variant_key": [], "condition_note": [ "구 분", "희석배수", @@ -26855,17 +25529,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "소형헬기 (AS350)", - "16배", - "30배", - "50배", - "60배", - "80배", - "100배", - "소형헬기 (Bell206)", - "대형헬기 (KA-32)" - ], + "variant_key": [], "condition_note": [ "구 분", "물탱크 용량", @@ -27023,6 +25687,10 @@ ] ] } + ], + "variant_keys": [ + "소형헬기 (160ha당)", + "대형헬기 (400ha당)" ] }, { @@ -27050,15 +25718,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "드론조종자 (건설기계 조종원)", - "무인헬기 (ha당)", - "이착륙장 정리(1개소/4ha)", - "취수 및 약제조제", - "약제살포", - "주유 및 약제충전 기체정비", - "비행준비" - ], + "variant_key": [], "condition_note": [ "구 분", "항 목", @@ -27140,15 +25800,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "드론조종자 (건설기계 조종원)", - "멀티콥터 (ha당)", - "이착륙장 정리(1개소/4ha)", - "취수 및 약제조제", - "약제살포", - "기체 및 약제충전 기체정비", - "비행준비" - ], + "variant_key": [], "condition_note": [ "구 분", "항 목", @@ -27213,7 +25865,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-08-06-03", @@ -27241,11 +25894,7 @@ "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ - "특별인부", - "차량살포 (동력분무기)", - "사전조사", - "운전", - "물주입, 살포" + "차량살포 (동력분무기)" ], "condition_note": [ "구 분", @@ -27302,17 +25951,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "250배", - "500배", - "1,000배", - "1,500배", - "2,000배", - "2,500배", - "3,000배", - "4,000배", - "5,000배" - ], + "variant_key": [], "condition_note": [ "물의양 희석 배수", "10ℓ (0.5말)", @@ -27426,6 +26065,9 @@ ] ] } + ], + "variant_keys": [ + "차량살포 (동력분무기)" ] }, { @@ -27453,9 +26095,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "방제실행 등록" - ], + "variant_key": [], "condition_note": [ "구 분", "소요인력(인)", @@ -27469,7 +26109,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-08-08", @@ -27479,7 +26120,8 @@ "parent_code": "FP-08", "sort_order": 60928, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-08-08-01", @@ -27508,12 +26150,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "10m이하", - "1.0RM 이하", - "1.1~1.5RM", - "1.6~2.0RM" - ], + "variant_key": [], "condition_note": [ "층적부피", "수집거리", @@ -27558,7 +26195,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-08-08-02", @@ -27587,11 +26225,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "10개 이하", - "굴 삭 기 우드그랩", - "인 력" - ], + "variant_key": [], "condition_note": [ "구 분", "㏊당 훈증더미 갯수", @@ -27624,7 +26258,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-08-09", @@ -27651,9 +26286,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "잔가지 줍기" - ], + "variant_key": [], "condition_note": [ "구 분", "소요인력(인/본당)", @@ -27667,7 +26300,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-08-10", @@ -27695,10 +26329,7 @@ "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ - "벌목부", "1㎥", - "벌목조재", - "피복작업", "2㎥" ], "condition_note": [ @@ -27751,6 +26382,10 @@ ] ] } + ], + "variant_keys": [ + "1㎥", + "2㎥" ] }, { @@ -27778,9 +26413,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "이동식 임목 파쇄기" - ], + "variant_key": [], "condition_note": [ "구 분", "규 격", @@ -27796,7 +26429,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09", @@ -27806,7 +26440,8 @@ "parent_code": null, "sort_order": 62464, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-09-01", @@ -27815,7 +26450,8 @@ "level": 2, "parent_code": "FP-09", "sort_order": 62720, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-09-02", @@ -27842,9 +26478,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "특별인부" - ], + "variant_key": [], "condition_note": [ "구 분", "횡단경사 60% 미만", @@ -27858,7 +26492,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-03", @@ -27868,7 +26503,8 @@ "parent_code": "FP-09", "sort_order": 63232, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-09-03-01", @@ -27895,9 +26531,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "보통인부(인)" - ], + "variant_key": [], "condition_note": [ "종류 직종", "보통토사", @@ -27915,7 +26549,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-03-02", @@ -27951,12 +26586,7 @@ "∼(U+223C)" ], "capacity_formula_here": true, - "variant_key": [ - "K", - "f", - "E", - "㎝(sec)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -27985,7 +26615,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-04", @@ -28006,7 +26637,13 @@ "weight": "1" } ], - "steps_basis": "품셈 9-4 암절취 = 9-4-1 암파쇄 + 9-4-2 집토 — 같은 ㎥ 를 깨고 모음(지식DB 토공_수량 「암절취 (암파쇄ㆍ집토) | 9-4」)" + "steps_basis": "품셈 9-4 암절취 = 9-4-1 암파쇄 + 9-4-2 집토 — 같은 ㎥ 를 깨고 모음(지식DB 토공_수량 「암절취 (암파쇄ㆍ집토) | 9-4」)", + "variant_keys": [ + "연암", + "보통암", + "경암", + "평균" + ] }, { "work_item_code": "FP-09-04-01", @@ -28034,9 +26671,9 @@ "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ - "대형브레이커+ 유압식백호우 (무한궤도,0.7㎥)", + "연암", "보통암", - "경 암" + "경암" ], "condition_note": [ "적용기계", @@ -28069,6 +26706,12 @@ ] ] } + ], + "variant_keys": [ + "연암", + "보통암", + "경암", + "평균" ] }, { @@ -28103,12 +26746,7 @@ ], "special_glyphs": [], "capacity_formula_here": true, - "variant_key": [ - "K", - "f", - "E", - "㎝(sec)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -28137,7 +26775,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-05", @@ -28162,7 +26801,12 @@ "weight": "1" } ], - "steps_basis": "품셈 9-5 발파암 — 절 제목 「9-5-1 육상, 암석 절취(발파 10%)」·「9-5-2 깎기(90%)」·「9-5-3 집토」(지식DB 토공_수량 「발파암 (절취 10 %ㆍ깎기 90 %ㆍ집토) | 9-5」)" + "steps_basis": "품셈 9-5 발파암 — 절 제목 「9-5-1 육상, 암석 절취(발파 10%)」·「9-5-2 깎기(90%)」·「9-5-3 집토」(지식DB 토공_수량 「발파암 (절취 10 %ㆍ깎기 90 %ㆍ집토) | 9-5」)", + "variant_keys": [ + "연암", + "보통암", + "경암" + ] }, { "work_item_code": "FP-09-05-01", @@ -28193,16 +26837,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "자재", - "뇌 관", - "비 트", - "인력", - "착 암 공", - "보통인부", - "장비", - "공기압축기" - ], + "variant_key": [], "condition_note": [ "구 분", "규 격", @@ -28277,7 +26912,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-05-02", @@ -28305,9 +26941,9 @@ "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ - "연 암", + "연암", "보통암", - "경 암" + "경암" ], "condition_note": [ "암의 종류", @@ -28336,6 +26972,11 @@ ] ] } + ], + "variant_keys": [ + "연암", + "보통암", + "경암" ] }, { @@ -28370,12 +27011,7 @@ ], "special_glyphs": [], "capacity_formula_here": true, - "variant_key": [ - "K", - "f", - "E", - "㎝(sec)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -28404,7 +27040,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-06", @@ -28414,7 +27051,8 @@ "parent_code": "FP-09", "sort_order": 65792, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-09-06-01", @@ -28443,9 +27081,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "대형브레이커+유압식백호우 (무한궤도,0.7㎥)" - ], + "variant_key": [], "condition_note": [ "적용기계", "작업능력(㎥/hr)", @@ -28459,7 +27095,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-07", @@ -28469,7 +27106,8 @@ "parent_code": "FP-09", "sort_order": 66304, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-09-07-01", @@ -28498,9 +27136,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "무근콘크리트" - ], + "variant_key": [], "condition_note": [ "구 분", "평균두께", @@ -28518,7 +27154,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-07-02", @@ -28547,9 +27184,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "무근콘크리트" - ], + "variant_key": [], "condition_note": [ "구 분", "평균두께", @@ -28567,7 +27202,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-08", @@ -28577,7 +27213,8 @@ "parent_code": "FP-09", "sort_order": 67072, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-09-08-01", @@ -28606,9 +27243,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "철근콘크리트" - ], + "variant_key": [], "condition_note": [ "구 분", "평균두께", @@ -28643,12 +27278,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "인력", - "보통인부", - "자재", - "산소" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -28686,7 +27316,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-08-02", @@ -28715,9 +27346,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "철근콘크리트" - ], + "variant_key": [], "condition_note": [ "구 분", "평균두께", @@ -28735,7 +27364,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-09", @@ -28762,11 +27392,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "메쌓기", - "뒷길이60㎝이상", - "찰쌓기" - ], + "variant_key": [], "condition_note": [ "구 분", "평균뒷길이", @@ -28798,7 +27424,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-10", @@ -28808,7 +27435,8 @@ "parent_code": "FP-09", "sort_order": 68096, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-09-10-01", @@ -28837,9 +27465,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "콘크리트" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -28855,7 +27481,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-10-02", @@ -28882,9 +27509,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "아스팔트" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -28900,7 +27525,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-11", @@ -28910,7 +27536,8 @@ "parent_code": "FP-09", "sort_order": 68864, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-09-11-01", @@ -28939,14 +27566,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "인력", - "보통인부", - "장비", - "자재", - "잡자재", - "경비" - ], + "variant_key": [], "condition_note": [ "구 분", "규 격", @@ -29005,7 +27625,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-12", @@ -29015,7 +27636,8 @@ "parent_code": "FP-09", "sort_order": 69376, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-09-12-01", @@ -29054,13 +27676,7 @@ ], "special_glyphs": [], "capacity_formula_here": true, - "variant_key": [ - "인력(10%)", - "장비(90%)", - "f", - "E", - "㎝(sec)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -29104,7 +27720,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-12-02", @@ -29142,16 +27759,7 @@ ], "special_glyphs": [], "capacity_formula_here": true, - "variant_key": [ - "인력 (10%)", - "보통인부(인)", - "장비 (90%)", - "치즐소모(본/hr)", - "유압식백호우 (무한궤도,0.7㎥)", - "f", - "E", - "㎝(sec)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -29208,7 +27816,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-12-03", @@ -29246,16 +27855,7 @@ ], "special_glyphs": [], "capacity_formula_here": true, - "variant_key": [ - "인력 (10%)", - "보통인부(인)", - "장비 (90%)", - "치즐소모량(본/hr)", - "유압식백호우 (무한궤도,0.7㎥)", - "f", - "E", - "㎝(sec)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -29312,7 +27912,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-13", @@ -29322,7 +27923,8 @@ "parent_code": "FP-09", "sort_order": 70400, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-09-13-01", @@ -29360,13 +27962,7 @@ ], "special_glyphs": [], "capacity_formula_here": true, - "variant_key": [ - "인력 (10%)", - "장비 (90%)", - "f", - "E", - "㎝(sec)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -29410,7 +28006,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-13-02", @@ -29444,10 +28041,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "인력 (10%)", - "장비 (90%)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -29468,7 +28062,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-13-03", @@ -29502,10 +28097,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "인력 (10%)", - "장비 (90%)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -29526,7 +28118,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-13-04", @@ -29565,13 +28158,7 @@ "×(U+00D7)" ], "capacity_formula_here": true, - "variant_key": [ - "인력 (10%)", - "장비 (90%)", - "f", - "E", - "㎝(sec)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -29615,7 +28202,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-13-05", @@ -29648,10 +28236,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "인력 (10%)", - "장비 (90%)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -29672,7 +28257,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-13-06", @@ -29705,10 +28291,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "인력 (10%)", - "장비 (90%)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -29729,7 +28312,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-13-07", @@ -29766,16 +28350,7 @@ ], "special_glyphs": [], "capacity_formula_here": true, - "variant_key": [ - "인력 (10%)", - "보통인부(인)", - "장비 (90%)", - "치즐소모량(본/hr)", - "들어 내기", - "f", - "E", - "㎝(sec)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -29840,7 +28415,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-13-08", @@ -29872,13 +28448,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "인력 (10%)", - "보통인부(인)", - "장비 (90%)", - "치즐소모량(본/hr)", - "들어내기" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -29922,7 +28492,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-13-09", @@ -29954,13 +28525,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "인력 (10%)", - "보통인부(인)", - "장비 (90%)", - "치즐소모량(본/hr)", - "들어 내기" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -30004,7 +28569,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-13-10", @@ -30043,15 +28609,7 @@ "×(U+00D7)" ], "capacity_formula_here": true, - "variant_key": [ - "인력 (10%)", - "장비 (90%)", - "치즐소모량(본/hr)", - "들어 내기", - "f", - "E", - "㎝(sec)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -30109,7 +28667,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-13-11", @@ -30142,12 +28701,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "인력 (10%)", - "장비 (90%)", - "치즐소모량(본/hr)", - "들어 내기" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -30184,7 +28738,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-13-12", @@ -30217,12 +28772,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "인력 (10%)", - "장비 (90%)", - "치즐소모량(본/hr)", - "들어 내기" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -30259,7 +28809,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-13-13", @@ -30298,16 +28849,7 @@ "×(U+00D7)" ], "capacity_formula_here": true, - "variant_key": [ - "인력 (10%)", - "보통인부(인)", - "장비 (90%)", - "치즐소모량(본/hr)", - "들어 내기", - "f", - "E", - "㎝(sec)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -30372,7 +28914,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-13-14", @@ -30404,13 +28947,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "인력 (10%)", - "보통인부(인)", - "장비 (90%)", - "치즐소모량(본/hr)", - "들어 내기" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -30454,7 +28991,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-13-15", @@ -30486,13 +29024,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "인력 (10%)", - "보통인부(인)", - "장비 (90%)", - "치즐소모량(본/hr)", - "들어 내기" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -30536,7 +29068,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-13-16", @@ -30573,16 +29106,7 @@ "×(U+00D7)" ], "capacity_formula_here": true, - "variant_key": [ - "인력 (10%)", - "보통인부(인)", - "장비 (90%)", - "치즐소모량(본/hr)", - "들어 내기", - "f", - "E", - "㎝(sec)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -30647,7 +29171,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-13-17", @@ -30680,13 +29205,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "인력 (10%)", - "보통인부(인)", - "장비 (90%)", - "치즐소모량(본/hr)", - "들어 내기" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -30730,7 +29249,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-13-18", @@ -30763,13 +29283,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "인력 (10%)", - "보통인부(인)", - "장비 (90%)", - "치즐소모량(본/hr)", - "들어 내기" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -30813,7 +29327,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-14", @@ -30823,7 +29338,8 @@ "parent_code": "FP-09", "sort_order": 75264, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-09-14-01", @@ -30858,13 +29374,7 @@ ], "special_glyphs": [], "capacity_formula_here": true, - "variant_key": [ - "인력 (10%)", - "장비 (90%)", - "f", - "E", - "㎝(sec)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -30908,7 +29418,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-14-02", @@ -30940,14 +29451,7 @@ "×(U+00D7)" ], "capacity_formula_here": true, - "variant_key": [ - "A", - "N", - "H", - "f", - "E", - "P" - ], + "variant_key": [], "condition_note": [ "적 용", "비 고" @@ -30985,7 +29489,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-15", @@ -30995,7 +29500,8 @@ "parent_code": "FP-09", "sort_order": 76032, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-09-15-01", @@ -31024,12 +29530,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "K(버킷계수)", - "f(토량환산계수)", - "E(작업효율)", - "㎝(1회 사이클시간)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -31058,7 +29559,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-15-02", @@ -31089,18 +29591,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "T(표토두께)", - "L(운반거리)", - "E(작업효율)", - "q(삽날의 용량)", - "q0(거리를 고려하지 않은 삽날의 용량)", - "e(운반거리계수)", - "f(토량환산계수)", - "V1(전진속도)", - "V2(후진속도)", - "t(기어변속시간)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -31159,7 +29650,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-16", @@ -31169,7 +29661,8 @@ "parent_code": "FP-09", "sort_order": 76800, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-09-16-01", @@ -31201,12 +29694,7 @@ ], "special_glyphs": [], "capacity_formula_here": true, - "variant_key": [ - "K", - "f", - "E", - "㎝(sec)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -31235,7 +29723,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-16-02", @@ -31262,14 +29751,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "V(다짐속도,km/hr)", - "W(롤러 유효폭,m)", - "E(작업효율)", - "D(펴는 흙의 두께,m)", - "f(토량환산계수)", - "N(소요다짐횟수)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -31308,7 +29790,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-16-03", @@ -31337,13 +29820,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "흡입준비(t1)", - "운반(t2)", - "흡입(t3)", - "대기((t4)", - "살수(t5)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -31377,7 +29854,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-17", @@ -31387,7 +29865,8 @@ "parent_code": "FP-09", "sort_order": 77824, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-09-17-01", @@ -31396,7 +29875,8 @@ "level": 3, "parent_code": "FP-09-17", "sort_order": 78080, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-09-17-02", @@ -31428,16 +29908,7 @@ ], "special_glyphs": [], "capacity_formula_here": true, - "variant_key": [ - "L", - "E", - "q0", - "e", - "f", - "V1", - "V2", - "t" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -31486,7 +29957,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-18", @@ -31520,12 +29992,7 @@ ], "special_glyphs": [], "capacity_formula_here": true, - "variant_key": [ - "굴착기 (무한궤도, 0.7㎥)", - "f", - "E", - "㎝(sec)" - ], + "variant_key": [], "condition_note": [ "적용장비", "적 용", @@ -31558,7 +30025,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-19", @@ -31568,7 +30036,8 @@ "parent_code": "FP-09", "sort_order": 78848, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-09-19-01", @@ -31595,15 +30064,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "보통인부 (인)", - "모래ㆍ사질토ㆍ점토ㆍ점질토", - "연질토ㆍ불순자갈", - "호박돌 섞인 고결토ㆍ경질토", - "풍화암", - "연암", - "보통암ㆍ경암" - ], + "variant_key": [], "condition_note": [ "토 질 별", "구 분" @@ -31677,11 +30138,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "인력시공", - "모래 또는 사질토", - "기계시공" - ], + "variant_key": [], "condition_note": [ "시 공", "토 질", @@ -31717,7 +30174,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-19-02", @@ -31744,10 +30202,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "인력", - "장비" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -31771,7 +30226,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-19-03", @@ -31800,12 +30256,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "인력", - "장비", - "소형브레이커", - "어어호스(3/4인치)" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -31843,7 +30294,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-20", @@ -31853,7 +30305,8 @@ "parent_code": "FP-09", "sort_order": 79872, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-09-20-01", @@ -31880,12 +30333,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "특별인부", - "보통인부", - "굴착기(무한궤도)", - "제잡비율" - ], + "variant_key": [], "condition_note": [ "명 칭", "규 격", @@ -31919,7 +30367,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-20-02", @@ -31946,10 +30395,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "특별인부", - "굴착기(무한궤도)" - ], + "variant_key": [], "condition_note": [ "명 칭", "규 격", @@ -31971,7 +30417,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-09-21", @@ -31999,9 +30446,12 @@ "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ - "굴착기 (무한궤도)", - "보통인부", - "굴착기(무한궤도,0.7㎥)" + "굴착기(무한궤도) 0.2 · 소", + "굴착기(무한궤도) 0.2 · 중", + "굴착기(무한궤도) 0.2 · 밀", + "굴착기(무한궤도) 0.7 · 소", + "굴착기(무한궤도) 0.7 · 중", + "굴착기(무한궤도) 0.7 · 밀" ], "condition_note": [ "종 류", @@ -32046,6 +30496,14 @@ ] ] } + ], + "variant_keys": [ + "굴착기(무한궤도) 0.2 · 소", + "굴착기(무한궤도) 0.2 · 중", + "굴착기(무한궤도) 0.2 · 밀", + "굴착기(무한궤도) 0.7 · 소", + "굴착기(무한궤도) 0.7 · 중", + "굴착기(무한궤도) 0.7 · 밀" ] }, { @@ -32075,12 +30533,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "K(버킷계수)", - "f(토량환산계수)", - "E(작업효율)", - "Cm(1회 사이클시간)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -32109,7 +30562,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10", @@ -32119,7 +30573,8 @@ "parent_code": null, "sort_order": 81152, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-10-01", @@ -32146,10 +30601,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "운반비", - "하차비" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -32168,7 +30620,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-02", @@ -32195,10 +30648,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "운반비", - "하차비" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -32217,7 +30667,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-03", @@ -32227,7 +30678,8 @@ "parent_code": "FP-10", "sort_order": 81920, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-10-03-01", @@ -32254,10 +30706,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "구 입", - "운 반" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -32276,7 +30725,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-03-02", @@ -32303,10 +30753,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "골재생산", - "운반" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -32325,7 +30772,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-03-03", @@ -32352,10 +30800,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "운반비", - "하차비" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -32374,7 +30819,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-04", @@ -32403,21 +30849,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "운반", - "t2=운반시간 참조", - "t3=20min", - "t4=0.42min", - "㎝=t1+t2+t3+t4", - "N=60×0.9/㎝", - "To=㎝-(t1+t3)", - "트럭운반 (10.5TON)", - "t3=10min", - "t4=5min", - "자주식 운반", - "콘크리트 믹서(6.0㎥)", - "크레인(트럭 10TON)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -32522,7 +30954,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-05", @@ -32531,7 +30964,8 @@ "level": 2, "parent_code": "FP-10", "sort_order": 83200, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-10-06", @@ -32541,7 +30975,8 @@ "parent_code": "FP-10", "sort_order": 83456, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-10-06-01", @@ -32568,13 +31003,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "토사", - "20", - "30", - "40", - "50" - ], + "variant_key": [], "condition_note": [ "거리 (m)", "보통인부(인)", @@ -32630,7 +31059,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-06-02", @@ -32657,9 +31087,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "보통인부(인)" - ], + "variant_key": [], "condition_note": [ "거리(m)", "50", @@ -32693,7 +31121,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-06-03", @@ -32720,11 +31149,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "소 재 (조재목)", - "m", - "20 40 60 80 100 120 140 160 180 200" - ], + "variant_key": [], "condition_note": [ "종 별 거 리", "목 재", @@ -32783,7 +31208,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-07", @@ -32793,7 +31219,8 @@ "parent_code": "FP-10", "sort_order": 84480, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-10-07-01", @@ -32820,10 +31247,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "작업반장(인)", - "특별인부(인)" - ], + "variant_key": [], "condition_note": [ "경사도 구분", "30도 미만", @@ -32845,7 +31269,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-07-02", @@ -32872,11 +31297,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "작업반장(인)", - "특별인부(인)", - "보통인부(인)" - ], + "variant_key": [], "condition_note": [ "경사도 구분", "30도 미만", @@ -32904,7 +31325,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-07-03", @@ -32931,11 +31353,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "작업반장(인)", - "특별인부(인)", - "보통인부(인)" - ], + "variant_key": [], "condition_note": [ "경사도 구분", "30도 미만", @@ -32963,7 +31381,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-07-04", @@ -32990,10 +31409,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "차량구분", - "단궤도" - ], + "variant_key": [], "condition_note": [ "구 분", "콘크리트", @@ -33032,9 +31448,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "시간(분)" - ], + "variant_key": [], "condition_note": [ "구 분", "콘크리트", @@ -33067,9 +31481,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "보통인부(인)" - ], + "variant_key": [], "condition_note": [ "직 종", "콘크리트", @@ -33102,16 +31514,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "연장", - "작업반장", - "특별인부", - "보통인부", - "모노레일 본기계", - "차체를 받치고 있는 부분 (차바퀴, 용수철, 브레이크 등)", - "레일·지지대", - "기타비용" - ], + "variant_key": [], "condition_note": [ "명 칭", "규 격", @@ -33197,10 +31600,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "연료비", - "보통인부" - ], + "variant_key": [], "condition_note": [ "명 칭", "단 위", @@ -33222,7 +31622,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-08", @@ -33232,7 +31633,8 @@ "parent_code": "FP-10", "sort_order": 85760, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-10-08-01", @@ -33261,12 +31663,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "짐내리는 인부", - "콘크리트", - "제 자재", - "〃" - ], + "variant_key": [], "condition_note": [ "구 분", "운반기구", @@ -33311,7 +31708,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-08-02", @@ -33340,9 +31738,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "운반대" - ], + "variant_key": [], "condition_note": [ "구 분", "규 격", @@ -33362,7 +31758,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-08-03", @@ -33389,12 +31786,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "특별인부", - "보통인부", - "연료비", - "운반기구 손료" - ], + "variant_key": [], "condition_note": [ "명 칭", "규 격", @@ -33433,7 +31825,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-09", @@ -33443,7 +31836,8 @@ "parent_code": "FP-10", "sort_order": 86784, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-10-09-01", @@ -33470,15 +31864,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "콘크리트 블 록", - "목제형틀", - "철제형틀", - "토사", - "자갈", - "강재", - "통나무" - ], + "variant_key": [], "condition_note": [ "규격 구분", "1t미만", @@ -33554,7 +31940,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-10", @@ -33564,7 +31951,8 @@ "parent_code": "FP-10", "sort_order": 87296, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-10-10-01", @@ -33591,11 +31979,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "작업반장", - "보통인부", - "버켓 손료" - ], + "variant_key": [], "condition_note": [ "명 칭", "형태ㆍ치수", @@ -33627,7 +32011,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-10-02", @@ -33654,11 +32039,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "작업반장", - "보통인부", - "와이어 손료" - ], + "variant_key": [], "condition_note": [ "명 칭", "형태ㆍ치수", @@ -33690,7 +32071,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-11", @@ -33725,17 +32107,9 @@ "special_glyphs": [], "capacity_formula_here": true, "variant_key": [ - "L", - "E", - "암석", - "q0", - "e", - "f", + "토사", "파쇄암", - "발파암", - "V1", - "V2", - "t" + "발파암" ], "condition_note": [ "구 분", @@ -33811,6 +32185,11 @@ ] ] } + ], + "variant_keys": [ + "토사", + "파쇄암", + "발파암" ] }, { @@ -33821,7 +32200,8 @@ "parent_code": "FP-10", "sort_order": 88320, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-10-12-01", @@ -33850,12 +32230,7 @@ ], "special_glyphs": [], "capacity_formula_here": true, - "variant_key": [ - "K", - "E0", - "파쇄암", - "㎝(초)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -33905,14 +32280,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "적재(t1)", - "t2", - "V2(공차)", - "적하(t3)", - "대기(t4)", - "덮개(t5)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -33957,7 +32325,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-12-02", @@ -33966,7 +32335,8 @@ "level": 3, "parent_code": "FP-10-12", "sort_order": 88832, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-10-12-03", @@ -33975,7 +32345,8 @@ "level": 3, "parent_code": "FP-10-12", "sort_order": 89088, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-10-13", @@ -33985,7 +32356,8 @@ "parent_code": "FP-10", "sort_order": 89344, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-10-13-01", @@ -34012,9 +32384,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "인원(명)" - ], + "variant_key": [], "condition_note": [ "수평거리", "100m", @@ -34036,7 +32406,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-10-13-02", @@ -34063,9 +32434,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "인원(명)" - ], + "variant_key": [], "condition_note": [ "수평거리", "100m", @@ -34106,12 +32475,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "① 드론준비시간(분)", - "② 왕복비행시간(분)", - "③ 1회 비행 운반 본수", - "④ 드론운반 작업인원" - ], + "variant_key": [], "condition_note": [ "항 목", "내 용", @@ -34140,7 +32504,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-11", @@ -34150,7 +32515,8 @@ "parent_code": null, "sort_order": 90112, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-11-01", @@ -34178,8 +32544,26 @@ "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ - "비계공", - "2.4M 3.0M 3.5M 4.8M 6.0M" + "길이 3M · 폭 2.4M", + "길이 3M · 폭 3.0M", + "길이 3M · 폭 3.5M", + "길이 3M · 폭 4.8M", + "길이 3M · 폭 6.0M", + "길이 6M · 폭 2.4M", + "길이 6M · 폭 3.0M", + "길이 6M · 폭 3.5M", + "길이 6M · 폭 4.8M", + "길이 6M · 폭 6.0M", + "길이 9M · 폭 2.4M", + "길이 9M · 폭 3.0M", + "길이 9M · 폭 3.5M", + "길이 9M · 폭 4.8M", + "길이 9M · 폭 6.0M", + "길이 12M · 폭 2.4M", + "길이 12M · 폭 3.0M", + "길이 12M · 폭 3.5M", + "길이 12M · 폭 4.8M", + "길이 12M · 폭 6.0M" ], "condition_note": [ "길이 폭", @@ -34216,6 +32600,28 @@ ] ] } + ], + "variant_keys": [ + "길이 3M · 폭 2.4M", + "길이 3M · 폭 3.0M", + "길이 3M · 폭 3.5M", + "길이 3M · 폭 4.8M", + "길이 3M · 폭 6.0M", + "길이 6M · 폭 2.4M", + "길이 6M · 폭 3.0M", + "길이 6M · 폭 3.5M", + "길이 6M · 폭 4.8M", + "길이 6M · 폭 6.0M", + "길이 9M · 폭 2.4M", + "길이 9M · 폭 3.0M", + "길이 9M · 폭 3.5M", + "길이 9M · 폭 4.8M", + "길이 9M · 폭 6.0M", + "길이 12M · 폭 2.4M", + "길이 12M · 폭 3.0M", + "길이 12M · 폭 3.5M", + "길이 12M · 폭 4.8M", + "길이 12M · 폭 6.0M" ] }, { @@ -34243,10 +32649,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "건축목공", - "보통인부" - ], + "variant_key": [], "condition_note": [ "종 류", "단 위", @@ -34265,7 +32668,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-11-03", @@ -34292,10 +32696,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "건축목공", - "보통인부" - ], + "variant_key": [], "condition_note": [ "종 류", "단 위", @@ -34314,7 +32715,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-11-04", @@ -34347,13 +32749,7 @@ ], "special_glyphs": [], "capacity_formula_here": true, - "variant_key": [ - "부설장비", - "k", - "f", - "E", - "㎝(sec)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -34397,7 +32793,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12", @@ -34407,7 +32804,8 @@ "parent_code": null, "sort_order": 91392, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-12-01", @@ -34417,7 +32815,8 @@ "parent_code": "FP-12", "sort_order": 91648, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-12-01-01", @@ -34472,6 +32871,11 @@ ] ] } + ], + "variant_keys": [ + "무근구조물", + "철근구조물", + "소형구조물" ] }, { @@ -34527,6 +32931,11 @@ ] ] } + ], + "variant_keys": [ + "무근구조물", + "철근구조물", + "소형구조물" ] }, { @@ -34599,12 +33008,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "25", - "(B)", - "(C)", - "40" - ], + "variant_key": [], "condition_note": [ "골재의 최대치수(㎜)", "배합종류", @@ -34674,12 +33078,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "25", - "(B)", - "(C)", - "40" - ], + "variant_key": [], "condition_note": [ "온도 품종", "00C때", @@ -34732,6 +33131,11 @@ ] ] } + ], + "variant_keys": [ + "무근구조물", + "철근구조물", + "소형구조물" ] }, { @@ -34761,9 +33165,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "미 장 공" - ], + "variant_key": [], "condition_note": [ "구 분", "단 위", @@ -34796,12 +33198,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "무근콘크리트", - "8 ~ 12 cm", - "15 cm", - "18 cm 이상" - ], + "variant_key": [], "condition_note": [ "슬 럼 프", "기준 시공량" @@ -34846,9 +33243,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "f₁" - ], + "variant_key": [], "condition_note": [ "유 형", "Type-Ⅰ", @@ -34883,12 +33278,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "Type-Ⅰ", - "Type-Ⅱ", - "Type-Ⅲ", - "Type-Ⅳ" - ], + "variant_key": [], "condition_note": [ "구 분", "적용 기준" @@ -34929,9 +33319,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "f₁" - ], + "variant_key": [], "condition_note": [ "유 형", "Type-Ⅰ", @@ -34964,11 +33352,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "Type-Ⅰ", - "Type-Ⅱ", - "Type-Ⅲ" - ], + "variant_key": [], "condition_note": [ "구 분", "적용 기준" @@ -35005,12 +33389,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "시멘트(kg)", - "1:2:4", - "1:3:6", - "1:4:8" - ], + "variant_key": [], "condition_note": [ "배 합 비", "재 료", @@ -35070,7 +33449,7 @@ "capacity_formula_here": false, "variant_key": [ "설 치", - "비 계 공" + "철 거" ], "condition_note": [ "구 분", @@ -35095,6 +33474,10 @@ ] ] } + ], + "variant_keys": [ + "설 치", + "철 거" ] }, { @@ -35123,10 +33506,9 @@ "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ - "철근공(인)", - "간 단", - "보 통", - "복 잡", + "간 단", + "보 통", + "복 잡", "매우복잡" ], "condition_note": [ @@ -35183,6 +33565,12 @@ ] ] } + ], + "variant_keys": [ + "간 단", + "보 통", + "복 잡", + "매우복잡" ] }, { @@ -35215,18 +33603,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "횟수별", - "합 판", - "각 재", - "철 선", - "못", - "박 리 제", - "형틀목공", - "보통인부", - "사용고재 평가기준", - "비 고" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -35327,7 +33704,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-05", @@ -35354,11 +33732,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "문양 스티로폴(자재비 포함)", - "설치 및 해체", - "보통인부" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -35389,7 +33763,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-06", @@ -35417,10 +33792,8 @@ "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ - "콘크리트믹서트럭 직접타설인경우", - "포장공", + "20㎝", "30㎝", - "보통인부", "40㎝" ], "condition_note": [ @@ -35466,6 +33839,11 @@ ] ] } + ], + "variant_keys": [ + "20㎝", + "30㎝", + "40㎝" ] }, { @@ -35476,7 +33854,8 @@ "parent_code": "FP-12", "sort_order": 93952, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-12-07-01", @@ -35505,11 +33884,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "명칭", - "특별인부", - "보통인부" - ], + "variant_key": [], "condition_note": [ "배치인원(인)", "사용기계(1대)", @@ -35542,7 +33917,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-07-02", @@ -35569,10 +33945,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "특별인부", - "보통인부" - ], + "variant_key": [], "condition_note": [ "배치인원(인)", "시공량(m)" @@ -35590,7 +33963,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-08", @@ -35617,13 +33991,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "포장두께(㎝)", - "형틀목공 보통인부", - "20㎝ ≤ 포장두께 ≤ 25㎝", - "25㎝ ≤ 포장두께 ≤ 30㎝", - "30㎝ ≤ 포장두께 ≤ 40㎝" - ], + "variant_key": [], "condition_note": [ "배치인원(인)", "시공량(거푸집연장 m)" @@ -35661,7 +34029,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-09", @@ -35671,7 +34040,8 @@ "parent_code": "FP-12", "sort_order": 94976, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-12-09-01", @@ -35698,15 +34068,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "콘크리트(레미콘)", - "거 푸 집", - "연결철근", - "수축줄눈", - "신축이음", - "비닐깔기", - "배수파이프 설치" - ], + "variant_key": [], "condition_note": [ "구 분", "규격", @@ -35766,7 +34128,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-09-02", @@ -35793,14 +34156,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "콘크리트", - "거 푸 집", - "철근가공조립", - "수축줄눈", - "신축이음", - "비닐깔기" - ], + "variant_key": [], "condition_note": [ "구 분", "규 격", @@ -35853,7 +34209,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-09-03", @@ -35880,10 +34237,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "콘크리트", - "거 푸 집" - ], + "variant_key": [], "condition_note": [ "구 분", "규 격", @@ -35908,7 +34262,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-10", @@ -35937,16 +34292,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "유공관 설치", - "배관공", - "특별인부", - "부직포", - "보통인부", - "잡석", - "소운반 인부", - "토공" - ], + "variant_key": [], "condition_note": [ "구 분", "규격", @@ -36029,7 +34375,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-11", @@ -36039,7 +34386,8 @@ "parent_code": "FP-12", "sort_order": 96256, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-12-11-01", @@ -36078,14 +34426,8 @@ "capacity_formula_here": false, "variant_key": [ "∅800mm", - "VR관", - "고무링", - "지수활제", - "기초콘크리트", - "거 푸 집", - "크레인", - "배관공", - "보통인부" + "∅1000mm", + "∅1200mm" ], "condition_note": [ "구 분", @@ -36178,6 +34520,11 @@ ] ] } + ], + "variant_keys": [ + "∅800mm", + "∅1000mm", + "∅1200mm" ] }, { @@ -36222,13 +34569,8 @@ "capacity_formula_here": false, "variant_key": [ "∅800mm", - "흄 관", - "기초콘크리트", - "거 푸 집", - "크레인", - "배관공", - "보통인부", - "접합몰탈" + "∅1000mm", + "∅1200mm" ], "condition_note": [ "구 분", @@ -36329,12 +34671,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "절단기", - "일반기계운전사", - "보통인부", - "잡재료비" - ], + "variant_key": [], "condition_note": [ "구 분", "규 격", @@ -36373,6 +34710,11 @@ ] ] } + ], + "variant_keys": [ + "∅800mm", + "∅1000mm", + "∅1200mm" ] }, { @@ -36412,12 +34754,8 @@ "capacity_formula_here": false, "variant_key": [ "∅800mm", - "파형강관", - "커플링밴드", - "크레인", - "배관공", - "보통인부", - "모래부설" + "∅1000mm", + "∅1200mm" ], "condition_note": [ "구 분", @@ -36492,6 +34830,11 @@ ] ] } + ], + "variant_keys": [ + "∅800mm", + "∅1000mm", + "∅1200mm" ] }, { @@ -36519,18 +34862,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "콘크리트 (레미콘)", - "다짐:봉상후렉시블(45mm)", - "거 푸 집", - "철근", - "기초잡석 운반, 부설 및 다짐", - "소할 (30%) 브레이커", - "적사(굴착기 0.7㎥)", - "운반(덤프트럭 15톤)", - "부 설 다 짐", - "바닥정리" - ], + "variant_key": [], "condition_note": [ "구 분", "규 격", @@ -36611,7 +34943,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-13", @@ -36638,16 +34971,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "콘크리트 (레미콘)", - "다짐:봉상후렉시블(45mm)", - "거 푸 집", - "기초잡석 운반, 부설 및 다짐", - "소할 (30%) 브레이커", - "적사(굴착기 0.7㎥)", - "운반(덤프트럭 15톤)", - "부 설 다 짐" - ], + "variant_key": [], "condition_note": [ "구 분", "규 격", @@ -36714,7 +35038,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-14", @@ -36741,10 +35066,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "파형강관부설", - "철 거" - ], + "variant_key": [], "condition_note": [ "구 분", "관경(㎜)", @@ -36772,7 +35094,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-15", @@ -36799,15 +35122,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "구체콘크리트 (레미콘)", - "다짐:봉상후렉시블(45mm)", - "버림콘크리트 (레미콘)", - "거 푸 집", - "철근", - "집수정 뚜껑", - "설치비" - ], + "variant_key": [], "condition_note": [ "구 분", "규 격", @@ -36867,7 +35182,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-16", @@ -36894,18 +35210,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "구체콘크리트 (레미콘)", - "봉상후렉시블(45mm)", - "버림콘크리트 (레미콘)", - "원형거푸집 (PE10회)", - "설치비", - "보통인부", - "벽체", - "거 푸 집", - "철 근", - "사다리설치" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -37011,7 +35316,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-17", @@ -37021,7 +35327,8 @@ "parent_code": "FP-12", "sort_order": 98560, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-12-17-01", @@ -37054,10 +35361,7 @@ "capacity_formula_here": false, "variant_key": [ "무근콘크리트", - "콘 크 리 트 공", - "특 별 인 부", - "보 통 인 부", - "콘크리트펌프차" + "철근콘크리트" ], "condition_note": [ "구 분", @@ -37103,6 +35407,10 @@ ] ] } + ], + "variant_keys": [ + "무근콘크리트", + "철근콘크리트" ] }, { @@ -37112,7 +35420,8 @@ "level": 3, "parent_code": "FP-12-17", "sort_order": 99072, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-12-17-02", @@ -37139,13 +35448,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "구체콘크리트 (철근)", - "타설", - "보통인부", - "펌프카(80㎥/hr)", - "콘크리트다짐" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -37190,7 +35493,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-18", @@ -37219,12 +35523,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "결속선(R=0.9mm)", - "철 근 공", - "보통인부", - "기구손료(노무비의)" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -37258,7 +35557,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-19", @@ -37289,15 +35589,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "자재", - "이음철물", - "조임철물", - "받침철물", - "철 물", - "인력", - "경비" - ], + "variant_key": [], "condition_note": [ "구 분", "단 위", @@ -37356,7 +35648,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-20", @@ -37385,13 +35678,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "자재", - "외관(60.6mm×2.3mm)", - "잡재료비(재료비의)", - "인력", - "보통인부" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -37441,7 +35728,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-21", @@ -37470,11 +35758,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "자재", - "인력", - "보통인부" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -37505,7 +35789,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-22", @@ -37532,10 +35817,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "재료비", - "설치비" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -37554,7 +35836,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-23", @@ -37581,11 +35864,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "자재", - "잡재료비(재료비의)", - "인력" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -37616,7 +35895,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-24", @@ -37626,7 +35906,8 @@ "parent_code": "FP-12", "sort_order": 101120, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-12-24-01", @@ -37635,7 +35916,10 @@ "level": 3, "parent_code": "FP-12-24", "sort_order": 101376, - "tables": [] + "tables": [], + "variant_keys": [ + "뒷채움 자재비 및 운반비 별산" + ] }, { "work_item_code": "FP-12-24-02", @@ -37673,16 +35957,7 @@ "special_glyphs": [], "capacity_formula_here": true, "variant_key": [ - "뒷채움 자재비 및 운반비 별산", - "인력 (10%)", - "보통인부(인)", - "장비 (90%)", - "f", - "E", - "㎝(sec)", - "살수", - "다짐", - "타이어 로울러(8-15ton)" + "뒷채움 자재비 및 운반비 별산" ], "condition_note": [ "구 분", @@ -37772,6 +36047,9 @@ ] ] } + ], + "variant_keys": [ + "뒷채움 자재비 및 운반비 별산" ] }, { @@ -37808,15 +36086,7 @@ "×(U+00D7)" ], "capacity_formula_here": true, - "variant_key": [ - "소할(30%)", - "적사", - "E", - "f", - "㎝(sec)", - "운반", - "부설 및 다짐" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -37874,7 +36144,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-26", @@ -37901,12 +36172,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "기계", - "디젤엔진(15HP)", - "운반 및 설치 (목도운반)", - "보통인부(인)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -37939,7 +36205,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-27", @@ -37949,7 +36216,8 @@ "parent_code": "FP-12", "sort_order": 102400, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-12-24-01", @@ -37987,15 +36255,7 @@ "special_glyphs": [], "capacity_formula_here": true, "variant_key": [ - "뒷채움 자재비 및 운반비 별산", - "인력 (10%)", - "보통인부(인)", - "장비 (90%)", - "f", - "E", - "㎝(sec)", - "살수", - "다짐" + "뒷채움 자재비 및 운반비 별산" ], "condition_note": [ "구 분", @@ -38077,6 +36337,9 @@ ] ] } + ], + "variant_keys": [ + "뒷채움 자재비 및 운반비 별산" ] }, { @@ -38104,11 +36367,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "자재", - "접착제", - "인력(설치비)" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -38139,7 +36398,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-27-03", @@ -38168,10 +36428,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "자재", - "인력(설치비)" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -38195,7 +36452,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-28", @@ -38222,11 +36480,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "자재", - "시너", - "인력" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -38257,7 +36511,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-29", @@ -38284,10 +36539,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "재료비", - "설치비" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -38306,7 +36558,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-30", @@ -38316,7 +36569,8 @@ "parent_code": "FP-12", "sort_order": 103936, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-12-30-01", @@ -38343,13 +36597,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "자재", - "철근가공조립(간단)", - "P.V.C 파이프(Ø35mm)", - "인력", - "보통인부" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -38394,7 +36642,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-30-02", @@ -38425,17 +36674,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "재료", - "탄성고무받침", - "스티로폴", - "TAR PAPER", - "채움재(아스팔트)", - "다웰바캡", - "조립", - "인력", - "보통인부" - ], + "variant_key": [], "condition_note": [ "구 분", "규격", @@ -38518,7 +36757,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-31", @@ -38545,10 +36785,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "재료비", - "설치비" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -38567,7 +36804,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-32", @@ -38594,10 +36832,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "재료비", - "설치비" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -38616,7 +36851,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-33", @@ -38643,10 +36879,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "재료", - "인력" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -38670,7 +36903,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-34", @@ -38680,7 +36914,8 @@ "parent_code": "FP-12", "sort_order": 105472, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-12-34-01", @@ -38707,13 +36942,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "자재", - "인력", - "보통인부", - "기계", - "봉상후렉시블(45mm)" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -38758,7 +36987,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-34-02", @@ -38785,10 +37015,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "재료비", - "노무비" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -38807,7 +37034,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-34-03", @@ -38834,14 +37062,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "자재", - "인력", - "보통인부", - "고철대(감)", - "철근", - "운반" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -38893,7 +37114,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-34-04", @@ -38920,9 +37142,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "재료비" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -38936,7 +37156,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-35", @@ -38963,11 +37184,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "자재", - "설치", - "보통인부" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -38998,7 +37215,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-36", @@ -39025,11 +37243,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "제작비", - "운송비", - "설치비" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -39053,7 +37267,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-37", @@ -39080,11 +37295,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "자재", - "인력", - "보통인부" - ], + "variant_key": [], "condition_note": [ "구 분", "단위", @@ -39115,7 +37326,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-38", @@ -39136,7 +37348,12 @@ "weight": "1" } ], - "steps_basis": "품셈 12-38 유로폼 = 12-38-2 사용수량(자재) + 12-38-3 설치 및 해체(품) — 12-38-1 사용횟수는 금액 단계가 아니라 사용수량의 잔존율 조건" + "steps_basis": "품셈 12-38 유로폼 = 12-38-2 사용수량(자재) + 12-38-3 설치 및 해체(품) — 12-38-1 사용횟수는 금액 단계가 아니라 사용수량의 잔존율 조건", + "variant_keys": [ + "복 잡", + "보 통", + "간 단" + ] }, { "work_item_code": "FP-12-38-01", @@ -39163,9 +37380,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "패 널 류 보, 드롭헤드, 강관파이프, 훅  클래프, 웨지핀" - ], + "variant_key": [], "condition_note": [ "구 분", "사용 조작 회수" @@ -39177,7 +37392,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-38-02", @@ -39209,12 +37425,7 @@ "x(U+0078)" ], "capacity_formula_here": false, - "variant_key": [ - "패 널", - "내 부 패 널", - "부 자 재 (웨지핀, 플랫타이, 강관파이프, 훅 등)", - "소모자재(박리제 등)" - ], + "variant_key": [], "condition_note": [ "구 분", "규 격", @@ -39265,9 +37476,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "요 율" - ], + "variant_key": [], "condition_note": [ "구 분", "간 단", @@ -39283,7 +37492,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-12-38-03", @@ -39312,8 +37522,8 @@ "capacity_formula_here": false, "variant_key": [ "복 잡", - "형틀목공 보통인부", - "비 고" + "보 통", + "간 단" ], "condition_note": [ "구 분", @@ -39365,11 +37575,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "복 잡", - "보 통", - "간 단" - ], + "variant_key": [], "condition_note": [ "구 분", "유 형" @@ -39389,6 +37595,11 @@ ] ] } + ], + "variant_keys": [ + "복 잡", + "보 통", + "간 단" ] }, { @@ -39399,7 +37610,8 @@ "parent_code": null, "sort_order": 108544, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-13-01", @@ -39408,7 +37620,8 @@ "level": 2, "parent_code": "FP-13", "sort_order": 108800, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-13-02", @@ -39418,7 +37631,8 @@ "parent_code": "FP-13", "sort_order": 109056, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-13-02-01", @@ -39445,10 +37659,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "규격", - "보통인부(인)" - ], + "variant_key": [], "condition_note": [ "명 칭", "친모래", @@ -39479,7 +37690,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-13-02-02", @@ -39507,7 +37719,7 @@ "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ - "보통인부", + "㎡당", "㎥당" ], "condition_note": [ @@ -39530,6 +37742,10 @@ ] ] } + ], + "variant_keys": [ + "㎡당", + "㎥당" ] }, { @@ -39557,13 +37773,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "작업반장", - "굴착기", - "집게 장치", - "(회전식 돌집게) 굴착기 운전", - "제 잡비 비율" - ], + "variant_key": [], "condition_note": [ "명 칭", "규 격", @@ -39629,10 +37839,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "40㎝이상∼60㎝미만", - "뒷길이" - ], + "variant_key": [], "condition_note": [ "명칭", "단위", @@ -39655,7 +37862,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-13-02-04", @@ -39683,8 +37891,16 @@ "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ - "인 부", - "㎥당" + "25㎝·㎡당", + "35㎝·㎡당", + "45㎝·㎡당", + "55㎝·㎡당", + "60㎝·㎡당", + "25㎝·㎥당", + "35㎝·㎥당", + "45㎝·㎥당", + "55㎝·㎥당", + "60㎝·㎥당" ], "condition_note": [ "뒷 길 이(㎝)", @@ -39715,6 +37931,18 @@ ] ] } + ], + "variant_keys": [ + "25㎝·㎡당", + "35㎝·㎡당", + "45㎝·㎡당", + "55㎝·㎡당", + "60㎝·㎡당", + "25㎝·㎥당", + "35㎝·㎥당", + "45㎝·㎥당", + "55㎝·㎥당", + "60㎝·㎥당" ] }, { @@ -39744,9 +37972,7 @@ "∼(U+223C)" ], "capacity_formula_here": false, - "variant_key": [ - "증가율(%)" - ], + "variant_key": [], "condition_note": [ "높 이(m)", "3 ∼ 4까지", @@ -39783,15 +38009,7 @@ "×(U+00D7)" ], "capacity_formula_here": false, - "variant_key": [ - "25㎝(17×17)", - "30㎝(20×20)", - "35㎝(25×25)", - "45㎝(30×30)", - "55㎝(35×35)", - "60㎝(40×40)", - "75㎝(50×50)" - ], + "variant_key": [], "condition_note": [ "종별 뒷길이 단위", "견치돌", @@ -39869,8 +38087,8 @@ "capacity_formula_here": false, "variant_key": [ "35cm 이하", - "석공 보통인부", - "굴착기+부착용 집게" + "55cm 이하", + "75cm 이하" ], "condition_note": [ "명 칭", @@ -39906,7 +38124,12 @@ ] } ], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [ + "35cm 이하", + "55cm 이하", + "75cm 이하" + ] }, { "work_item_code": "FP-13-03-01", @@ -39936,12 +38159,9 @@ ], "capacity_formula_here": false, "variant_key": [ - "모래 기초다짐", "두 께 3㎝", "두 께 6㎝", - "자갈 기초다짐 지름 1~3㎝", - "조약돌 기초다짐 지름 9~15㎝", - "돌쌓기 뒤채움 지름 9~15㎝" + "자갈 기초다짐 지름 1~3㎝" ], "condition_note": [ "종 별", @@ -39981,6 +38201,11 @@ ] ] } + ], + "variant_keys": [ + "두 께 3㎝", + "두 께 6㎝", + "자갈 기초다짐 지름 1~3㎝" ] }, { @@ -40008,11 +38233,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "(mm)", - "기초다짐 뒷채움", - "75이상" - ], + "variant_key": [], "condition_note": [ "종 별", "규격", @@ -40048,7 +38269,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-13-04", @@ -40058,7 +38280,8 @@ "parent_code": "FP-13", "sort_order": 111104, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-13-04-01", @@ -40086,15 +38309,46 @@ "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ - "골쌓기", - "석공 (인)", - "25", - "30", - "35", - "45", - "55", - "60", - "75" + "깬잡석 · 골쌓기 · 뒷길이 25㎝", + "깬잡석 · 켜쌓기 · 뒷길이 25㎝", + "호박돌 및 야면석 · 뒷길이 25㎝", + "깬돌 · 골쌓기 · 뒷길이 30㎝", + "깬돌 · 켜쌓기 · 뒷길이 30㎝", + "깬잡석 · 골쌓기 · 뒷길이 30㎝", + "깬잡석 · 켜쌓기 · 뒷길이 30㎝", + "호박돌 및 야면석 · 뒷길이 30㎝", + "견치돌 · 골쌓기 · 뒷길이 35㎝", + "견치돌 · 켜쌓기 · 뒷길이 35㎝", + "깬돌 · 골쌓기 · 뒷길이 35㎝", + "깬돌 · 켜쌓기 · 뒷길이 35㎝", + "깬잡석 · 골쌓기 · 뒷길이 35㎝", + "깬잡석 · 켜쌓기 · 뒷길이 35㎝", + "호박돌 및 야면석 · 뒷길이 35㎝", + "견치돌 · 골쌓기 · 뒷길이 45㎝", + "견치돌 · 켜쌓기 · 뒷길이 45㎝", + "깬돌 · 골쌓기 · 뒷길이 45㎝", + "깬돌 · 켜쌓기 · 뒷길이 45㎝", + "깬잡석 · 골쌓기 · 뒷길이 45㎝", + "깬잡석 · 켜쌓기 · 뒷길이 45㎝", + "호박돌 및 야면석 · 뒷길이 45㎝", + "견치돌 · 골쌓기 · 뒷길이 55㎝", + "견치돌 · 켜쌓기 · 뒷길이 55㎝", + "깬돌 · 골쌓기 · 뒷길이 55㎝", + "깬돌 · 켜쌓기 · 뒷길이 55㎝", + "깬잡석 · 골쌓기 · 뒷길이 55㎝", + "깬잡석 · 켜쌓기 · 뒷길이 55㎝", + "호박돌 및 야면석 · 뒷길이 55㎝", + "견치돌 · 골쌓기 · 뒷길이 60㎝", + "견치돌 · 켜쌓기 · 뒷길이 60㎝", + "깬돌 · 골쌓기 · 뒷길이 60㎝", + "깬돌 · 켜쌓기 · 뒷길이 60㎝", + "깬잡석 · 골쌓기 · 뒷길이 60㎝", + "깬잡석 · 켜쌓기 · 뒷길이 60㎝", + "호박돌 및 야면석 · 뒷길이 60㎝", + "깬돌 · 골쌓기 · 뒷길이 75㎝", + "깬돌 · 켜쌓기 · 뒷길이 75㎝", + "깬잡석 · 골쌓기 · 뒷길이 75㎝", + "깬잡석 · 켜쌓기 · 뒷길이 75㎝" ], "condition_note": [ "뒷길이 (㎝)", @@ -40259,6 +38513,48 @@ ] ] } + ], + "variant_keys": [ + "깬잡석 · 골쌓기 · 뒷길이 25㎝", + "깬잡석 · 켜쌓기 · 뒷길이 25㎝", + "호박돌 및 야면석 · 뒷길이 25㎝", + "깬돌 · 골쌓기 · 뒷길이 30㎝", + "깬돌 · 켜쌓기 · 뒷길이 30㎝", + "깬잡석 · 골쌓기 · 뒷길이 30㎝", + "깬잡석 · 켜쌓기 · 뒷길이 30㎝", + "호박돌 및 야면석 · 뒷길이 30㎝", + "견치돌 · 골쌓기 · 뒷길이 35㎝", + "견치돌 · 켜쌓기 · 뒷길이 35㎝", + "깬돌 · 골쌓기 · 뒷길이 35㎝", + "깬돌 · 켜쌓기 · 뒷길이 35㎝", + "깬잡석 · 골쌓기 · 뒷길이 35㎝", + "깬잡석 · 켜쌓기 · 뒷길이 35㎝", + "호박돌 및 야면석 · 뒷길이 35㎝", + "견치돌 · 골쌓기 · 뒷길이 45㎝", + "견치돌 · 켜쌓기 · 뒷길이 45㎝", + "깬돌 · 골쌓기 · 뒷길이 45㎝", + "깬돌 · 켜쌓기 · 뒷길이 45㎝", + "깬잡석 · 골쌓기 · 뒷길이 45㎝", + "깬잡석 · 켜쌓기 · 뒷길이 45㎝", + "호박돌 및 야면석 · 뒷길이 45㎝", + "견치돌 · 골쌓기 · 뒷길이 55㎝", + "견치돌 · 켜쌓기 · 뒷길이 55㎝", + "깬돌 · 골쌓기 · 뒷길이 55㎝", + "깬돌 · 켜쌓기 · 뒷길이 55㎝", + "깬잡석 · 골쌓기 · 뒷길이 55㎝", + "깬잡석 · 켜쌓기 · 뒷길이 55㎝", + "호박돌 및 야면석 · 뒷길이 55㎝", + "견치돌 · 골쌓기 · 뒷길이 60㎝", + "견치돌 · 켜쌓기 · 뒷길이 60㎝", + "깬돌 · 골쌓기 · 뒷길이 60㎝", + "깬돌 · 켜쌓기 · 뒷길이 60㎝", + "깬잡석 · 골쌓기 · 뒷길이 60㎝", + "깬잡석 · 켜쌓기 · 뒷길이 60㎝", + "호박돌 및 야면석 · 뒷길이 60㎝", + "깬돌 · 골쌓기 · 뒷길이 75㎝", + "깬돌 · 켜쌓기 · 뒷길이 75㎝", + "깬잡석 · 골쌓기 · 뒷길이 75㎝", + "깬잡석 · 켜쌓기 · 뒷길이 75㎝" ] }, { @@ -40288,8 +38584,8 @@ "capacity_formula_here": false, "variant_key": [ "35cm 이하", - "석공 보통인부", - "굴착기+부착용 집게" + "55cm 이하", + "75cm 이하" ], "condition_note": [ "명 칭", @@ -40324,6 +38620,11 @@ ] ] } + ], + "variant_keys": [ + "35cm 이하", + "55cm 이하", + "75cm 이하" ] }, { @@ -40351,9 +38652,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "야면석(㎥) 깬잡석(㎥) 깬 돌(㎥) 견치돌(㎥)" - ], + "variant_key": [], "condition_note": [ "뒷길이 종별", "25㎝", @@ -40377,7 +38676,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-13-04-04", @@ -40405,15 +38705,46 @@ "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ - "골쌓기", - "석 공 (인)", - "25", - "30", - "35", - "45", - "55", - "60", - "75" + "깬잡석 · 골쌓기 · 뒷길이 25㎝", + "깬잡석 · 켜쌓기 · 뒷길이 25㎝", + "호박돌 및 야면석 · 뒷길이 25㎝", + "깬돌 · 골쌓기 · 뒷길이 30㎝", + "깬돌 · 켜쌓기 · 뒷길이 30㎝", + "깬잡석 · 골쌓기 · 뒷길이 30㎝", + "깬잡석 · 켜쌓기 · 뒷길이 30㎝", + "호박돌 및 야면석 · 뒷길이 30㎝", + "견치돌 · 골쌓기 · 뒷길이 35㎝", + "견치돌 · 켜쌓기 · 뒷길이 35㎝", + "깬돌 · 골쌓기 · 뒷길이 35㎝", + "깬돌 · 켜쌓기 · 뒷길이 35㎝", + "깬잡석 · 골쌓기 · 뒷길이 35㎝", + "깬잡석 · 켜쌓기 · 뒷길이 35㎝", + "호박돌 및 야면석 · 뒷길이 35㎝", + "견치돌 · 골쌓기 · 뒷길이 45㎝", + "견치돌 · 켜쌓기 · 뒷길이 45㎝", + "깬돌 · 골쌓기 · 뒷길이 45㎝", + "깬돌 · 켜쌓기 · 뒷길이 45㎝", + "깬잡석 · 골쌓기 · 뒷길이 45㎝", + "깬잡석 · 켜쌓기 · 뒷길이 45㎝", + "호박돌 및 야면석 · 뒷길이 45㎝", + "견치돌 · 골쌓기 · 뒷길이 55㎝", + "견치돌 · 켜쌓기 · 뒷길이 55㎝", + "깬돌 · 골쌓기 · 뒷길이 55㎝", + "깬돌 · 켜쌓기 · 뒷길이 55㎝", + "깬잡석 · 골쌓기 · 뒷길이 55㎝", + "깬잡석 · 켜쌓기 · 뒷길이 55㎝", + "호박돌 및 야면석 · 뒷길이 55㎝", + "견치돌 · 골쌓기 · 뒷길이 60㎝", + "견치돌 · 켜쌓기 · 뒷길이 60㎝", + "깬돌 · 골쌓기 · 뒷길이 60㎝", + "깬돌 · 켜쌓기 · 뒷길이 60㎝", + "깬잡석 · 골쌓기 · 뒷길이 60㎝", + "깬잡석 · 켜쌓기 · 뒷길이 60㎝", + "호박돌 및 야면석 · 뒷길이 60㎝", + "깬돌 · 골쌓기 · 뒷길이 75㎝", + "깬돌 · 켜쌓기 · 뒷길이 75㎝", + "깬잡석 · 골쌓기 · 뒷길이 75㎝", + "깬잡석 · 켜쌓기 · 뒷길이 75㎝" ], "condition_note": [ "뒷길이 (㎝)", @@ -40595,10 +38926,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "야면석(㎥) 호박돌(㎥)", - "깬잡석(㎥) 깬 돌(㎥) 견치돌(㎥)" - ], + "variant_key": [], "condition_note": [ "뒷길이 종별", "25㎝", @@ -40654,9 +38982,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "상부의 두께(㎝) 하부의 두께(㎝)" - ], + "variant_key": [], "condition_note": [ "직 고(直高)", "∼1.5m", @@ -40694,10 +39020,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "∼1.5", - "메쌓기(㎝) 찰쌓기(㎝)" - ], + "variant_key": [], "condition_note": [ "높이단위 공종별", "돌쌓기 높이(m)", @@ -40741,11 +39064,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "메쌓기", - "절토", - "찰쌓기" - ], + "variant_key": [], "condition_note": [ "직 고(直高)(m)", "∼1.5", @@ -40793,6 +39112,48 @@ ] ] } + ], + "variant_keys": [ + "깬잡석 · 골쌓기 · 뒷길이 25㎝", + "깬잡석 · 켜쌓기 · 뒷길이 25㎝", + "호박돌 및 야면석 · 뒷길이 25㎝", + "깬돌 · 골쌓기 · 뒷길이 30㎝", + "깬돌 · 켜쌓기 · 뒷길이 30㎝", + "깬잡석 · 골쌓기 · 뒷길이 30㎝", + "깬잡석 · 켜쌓기 · 뒷길이 30㎝", + "호박돌 및 야면석 · 뒷길이 30㎝", + "견치돌 · 골쌓기 · 뒷길이 35㎝", + "견치돌 · 켜쌓기 · 뒷길이 35㎝", + "깬돌 · 골쌓기 · 뒷길이 35㎝", + "깬돌 · 켜쌓기 · 뒷길이 35㎝", + "깬잡석 · 골쌓기 · 뒷길이 35㎝", + "깬잡석 · 켜쌓기 · 뒷길이 35㎝", + "호박돌 및 야면석 · 뒷길이 35㎝", + "견치돌 · 골쌓기 · 뒷길이 45㎝", + "견치돌 · 켜쌓기 · 뒷길이 45㎝", + "깬돌 · 골쌓기 · 뒷길이 45㎝", + "깬돌 · 켜쌓기 · 뒷길이 45㎝", + "깬잡석 · 골쌓기 · 뒷길이 45㎝", + "깬잡석 · 켜쌓기 · 뒷길이 45㎝", + "호박돌 및 야면석 · 뒷길이 45㎝", + "견치돌 · 골쌓기 · 뒷길이 55㎝", + "견치돌 · 켜쌓기 · 뒷길이 55㎝", + "깬돌 · 골쌓기 · 뒷길이 55㎝", + "깬돌 · 켜쌓기 · 뒷길이 55㎝", + "깬잡석 · 골쌓기 · 뒷길이 55㎝", + "깬잡석 · 켜쌓기 · 뒷길이 55㎝", + "호박돌 및 야면석 · 뒷길이 55㎝", + "견치돌 · 골쌓기 · 뒷길이 60㎝", + "견치돌 · 켜쌓기 · 뒷길이 60㎝", + "깬돌 · 골쌓기 · 뒷길이 60㎝", + "깬돌 · 켜쌓기 · 뒷길이 60㎝", + "깬잡석 · 골쌓기 · 뒷길이 60㎝", + "깬잡석 · 켜쌓기 · 뒷길이 60㎝", + "호박돌 및 야면석 · 뒷길이 60㎝", + "깬돌 · 골쌓기 · 뒷길이 75㎝", + "깬돌 · 켜쌓기 · 뒷길이 75㎝", + "깬잡석 · 골쌓기 · 뒷길이 75㎝", + "깬잡석 · 켜쌓기 · 뒷길이 75㎝" ] }, { @@ -40822,8 +39183,8 @@ "capacity_formula_here": false, "variant_key": [ "35cm 이하", - "석공 보통인부", - "굴착기+부착용 집게" + "55cm 이하", + "75cm 이하" ], "condition_note": [ "명 칭", @@ -40858,6 +39219,11 @@ ] ] } + ], + "variant_keys": [ + "35cm 이하", + "55cm 이하", + "75cm 이하" ] }, { @@ -40913,6 +39279,11 @@ ] ] } + ], + "variant_keys": [ + "25㎝", + "30㎝", + "35㎝" ] }, { @@ -40923,7 +39294,8 @@ "parent_code": "FP-13", "sort_order": 112896, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-13-05-01", @@ -40951,9 +39323,46 @@ "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ - "종 별", - "뒷길이 (㎝)", - "25 30 35 45 55 60 70" + "메 붙 임 · 깬 돌 · 뒷길이 25㎝", + "메 붙 임 · 깬 돌 · 뒷길이 30㎝", + "메 붙 임 · 깬 돌 · 뒷길이 35㎝", + "메 붙 임 · 깬 돌 · 뒷길이 45㎝", + "메 붙 임 · 깬 돌 · 뒷길이 55㎝", + "메 붙 임 · 깬 돌 · 뒷길이 60㎝", + "메 붙 임 · 깬 돌 · 뒷길이 70㎝", + "메 붙 임 · 깬잡석 · 뒷길이 25㎝", + "메 붙 임 · 깬잡석 · 뒷길이 30㎝", + "메 붙 임 · 깬잡석 · 뒷길이 35㎝", + "메 붙 임 · 깬잡석 · 뒷길이 45㎝", + "메 붙 임 · 깬잡석 · 뒷길이 55㎝", + "메 붙 임 · 깬잡석 · 뒷길이 60㎝", + "메 붙 임 · 깬잡석 · 뒷길이 70㎝", + "메 붙 임 · 조약돌 및 야면석 · 뒷길이 25㎝", + "메 붙 임 · 조약돌 및 야면석 · 뒷길이 30㎝", + "메 붙 임 · 조약돌 및 야면석 · 뒷길이 35㎝", + "메 붙 임 · 조약돌 및 야면석 · 뒷길이 45㎝", + "메 붙 임 · 조약돌 및 야면석 · 뒷길이 55㎝", + "메 붙 임 · 조약돌 및 야면석 · 뒷길이 60㎝", + "찰 붙 임 · 깬 돌 · 뒷길이 25㎝", + "찰 붙 임 · 깬 돌 · 뒷길이 30㎝", + "찰 붙 임 · 깬 돌 · 뒷길이 35㎝", + "찰 붙 임 · 깬 돌 · 뒷길이 45㎝", + "찰 붙 임 · 깬 돌 · 뒷길이 55㎝", + "찰 붙 임 · 깬 돌 · 뒷길이 60㎝", + "찰 붙 임 · 깬 돌 · 뒷길이 70㎝", + "찰 붙 임 · 깬잡석 · 뒷길이 25㎝", + "찰 붙 임 · 깬잡석 · 뒷길이 30㎝", + "찰 붙 임 · 깬잡석 · 뒷길이 35㎝", + "찰 붙 임 · 깬잡석 · 뒷길이 45㎝", + "찰 붙 임 · 깬잡석 · 뒷길이 55㎝", + "찰 붙 임 · 깬잡석 · 뒷길이 60㎝", + "찰 붙 임 · 깬잡석 · 뒷길이 70㎝", + "찰 붙 임 · 호박돌 및 야면석 · 뒷길이 25㎝", + "찰 붙 임 · 호박돌 및 야면석 · 뒷길이 30㎝", + "찰 붙 임 · 호박돌 및 야면석 · 뒷길이 35㎝", + "찰 붙 임 · 호박돌 및 야면석 · 뒷길이 45㎝", + "찰 붙 임 · 호박돌 및 야면석 · 뒷길이 55㎝", + "찰 붙 임 · 호박돌 및 야면석 · 뒷길이 60㎝" ], "condition_note": [ "구 분", @@ -41008,6 +39417,48 @@ ] ] } + ], + "variant_keys": [ + "메 붙 임 · 깬 돌 · 뒷길이 25㎝", + "메 붙 임 · 깬 돌 · 뒷길이 30㎝", + "메 붙 임 · 깬 돌 · 뒷길이 35㎝", + "메 붙 임 · 깬 돌 · 뒷길이 45㎝", + "메 붙 임 · 깬 돌 · 뒷길이 55㎝", + "메 붙 임 · 깬 돌 · 뒷길이 60㎝", + "메 붙 임 · 깬 돌 · 뒷길이 70㎝", + "메 붙 임 · 깬잡석 · 뒷길이 25㎝", + "메 붙 임 · 깬잡석 · 뒷길이 30㎝", + "메 붙 임 · 깬잡석 · 뒷길이 35㎝", + "메 붙 임 · 깬잡석 · 뒷길이 45㎝", + "메 붙 임 · 깬잡석 · 뒷길이 55㎝", + "메 붙 임 · 깬잡석 · 뒷길이 60㎝", + "메 붙 임 · 깬잡석 · 뒷길이 70㎝", + "메 붙 임 · 조약돌 및 야면석 · 뒷길이 25㎝", + "메 붙 임 · 조약돌 및 야면석 · 뒷길이 30㎝", + "메 붙 임 · 조약돌 및 야면석 · 뒷길이 35㎝", + "메 붙 임 · 조약돌 및 야면석 · 뒷길이 45㎝", + "메 붙 임 · 조약돌 및 야면석 · 뒷길이 55㎝", + "메 붙 임 · 조약돌 및 야면석 · 뒷길이 60㎝", + "찰 붙 임 · 깬 돌 · 뒷길이 25㎝", + "찰 붙 임 · 깬 돌 · 뒷길이 30㎝", + "찰 붙 임 · 깬 돌 · 뒷길이 35㎝", + "찰 붙 임 · 깬 돌 · 뒷길이 45㎝", + "찰 붙 임 · 깬 돌 · 뒷길이 55㎝", + "찰 붙 임 · 깬 돌 · 뒷길이 60㎝", + "찰 붙 임 · 깬 돌 · 뒷길이 70㎝", + "찰 붙 임 · 깬잡석 · 뒷길이 25㎝", + "찰 붙 임 · 깬잡석 · 뒷길이 30㎝", + "찰 붙 임 · 깬잡석 · 뒷길이 35㎝", + "찰 붙 임 · 깬잡석 · 뒷길이 45㎝", + "찰 붙 임 · 깬잡석 · 뒷길이 55㎝", + "찰 붙 임 · 깬잡석 · 뒷길이 60㎝", + "찰 붙 임 · 깬잡석 · 뒷길이 70㎝", + "찰 붙 임 · 호박돌 및 야면석 · 뒷길이 25㎝", + "찰 붙 임 · 호박돌 및 야면석 · 뒷길이 30㎝", + "찰 붙 임 · 호박돌 및 야면석 · 뒷길이 35㎝", + "찰 붙 임 · 호박돌 및 야면석 · 뒷길이 45㎝", + "찰 붙 임 · 호박돌 및 야면석 · 뒷길이 55㎝", + "찰 붙 임 · 호박돌 및 야면석 · 뒷길이 60㎝" ] }, { @@ -41037,8 +39488,8 @@ "capacity_formula_here": false, "variant_key": [ "35cm 이하", - "석공 보통인부", - "굴착기+부착용 집게" + "55cm 이하", + "75cm 이하" ], "condition_note": [ "명 칭", @@ -41073,6 +39524,11 @@ ] ] } + ], + "variant_keys": [ + "35cm 이하", + "55cm 이하", + "75cm 이하" ] }, { @@ -41083,7 +39539,8 @@ "parent_code": "FP-13", "sort_order": 113664, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-13-06-01", @@ -41116,11 +39573,8 @@ "capacity_formula_here": false, "variant_key": [ "직경 40㎝이상 ∼60㎝미만", - "작업반장", - "특별인부", - "보통인부", - "굴 삭 기 (무한궤도)", - "제잡비 비율" + "직경 60㎝이상 ∼80㎝미만", + "직경 80㎝이상 ∼100㎝이하" ], "condition_note": [ "명칭", @@ -41179,6 +39633,11 @@ ] ] } + ], + "variant_keys": [ + "직경 40㎝이상 ∼60㎝미만", + "직경 60㎝이상 ∼80㎝미만", + "직경 80㎝이상 ∼100㎝이하" ] }, { @@ -41210,11 +39669,8 @@ "capacity_formula_here": false, "variant_key": [ "직경 40㎝이상 ∼60㎝미만", - "작업반장", - "특별인부", - "보통인부", - "굴착기 (무한궤도)", - "제잡비 비율" + "직경 60㎝이상 ∼80㎝미만", + "직경 80㎝이상 ∼100㎝이하" ], "condition_note": [ "명칭", @@ -41273,6 +39729,11 @@ ] ] } + ], + "variant_keys": [ + "직경 40㎝이상 ∼60㎝미만", + "직경 60㎝이상 ∼80㎝미만", + "직경 80㎝이상 ∼100㎝이하" ] }, { @@ -41304,11 +39765,8 @@ "capacity_formula_here": false, "variant_key": [ "직경 40㎝이상 ~60㎝미만", - "작업반장", - "특별인부", - "보통인부", - "굴착기 (무한궤도)", - "제잡비 비율" + "직경 60㎝이상 ~80㎝미만", + "직경 80㎝이상 ~100㎝이하" ], "condition_note": [ "명칭", @@ -41367,6 +39825,11 @@ ] ] } + ], + "variant_keys": [ + "직경 40㎝이상 ~60㎝미만", + "직경 60㎝이상 ~80㎝미만", + "직경 80㎝이상 ~100㎝이하" ] }, { @@ -41377,7 +39840,8 @@ "parent_code": "FP-13", "sort_order": 114688, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-13-07-01", @@ -41408,11 +39872,8 @@ "capacity_formula_here": false, "variant_key": [ "직경 40㎝이상 ~60㎝미만", - "작업반장", - "특별인부", - "보통인부", - "굴착기 (무한궤도)", - "제 잡비 비율" + "직경 60㎝이상 ~80㎝미만", + "직경 80㎝이상 ~100㎝이하" ], "condition_note": [ "명칭", @@ -41471,6 +39932,11 @@ ] ] } + ], + "variant_keys": [ + "직경 40㎝이상 ~60㎝미만", + "직경 60㎝이상 ~80㎝미만", + "직경 80㎝이상 ~100㎝이하" ] }, { @@ -41504,11 +39970,8 @@ "capacity_formula_here": false, "variant_key": [ "직경 40㎝이상 ∼60㎝미만", - "작업반장", - "특별인부", - "보통인부", - "굴 삭 기 (무한궤도)", - "제잡비 비율" + "직경 60㎝이상 ∼80㎝미만", + "직경 80㎝이상 ∼100㎝이하" ], "condition_note": [ "명칭", @@ -41567,6 +40030,11 @@ ] ] } + ], + "variant_keys": [ + "직경 40㎝이상 ∼60㎝미만", + "직경 60㎝이상 ∼80㎝미만", + "직경 80㎝이상 ∼100㎝이하" ] }, { @@ -41594,9 +40062,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "뒷길이 평균 적용" - ], + "variant_key": [], "condition_note": [ "구 분", "명 칭", @@ -41614,7 +40080,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-13-09", @@ -41645,11 +40112,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "인 력", - "석 공", - "장 비" - ], + "variant_key": [], "condition_note": [ "구 분", "규 격", @@ -41680,7 +40143,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-13-10", @@ -41690,7 +40154,8 @@ "parent_code": "FP-13", "sort_order": 115968, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-13-10-01", @@ -41735,6 +40200,9 @@ ] ] } + ], + "variant_keys": [ + "직경 15㎝ 길이 4m" ] }, { @@ -41762,9 +40230,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "보통 인부 (인)" - ], + "variant_key": [], "condition_note": [ "직종", "말구 길이", @@ -41803,9 +40269,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "보 통 인 부 (인)" - ], + "variant_key": [], "condition_note": [ "직종", "말구 길이", @@ -41862,9 +40326,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "계수" - ], + "variant_key": [], "condition_note": [ "관입률 =", "0.3", @@ -41907,15 +40369,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "8 9", - "12", - "15", - "18", - "21", - "24", - "27" - ], + "variant_key": [], "condition_note": [ "품종 말구 길이 (㎝) (m)", "경유 (ℓ)", @@ -42038,7 +40492,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-13-11", @@ -42048,7 +40503,8 @@ "parent_code": "FP-13", "sort_order": 116736, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-13-11-01", @@ -42075,11 +40531,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "조약돌량(㎥)", - "인력(인)", - "돌 채 움" - ], + "variant_key": [], "condition_note": [ "지름(㎝) 공종", "45", @@ -42131,12 +40583,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "조립 설치", - "보통인부", - "돌채움", - "굴착기(1.0㎥)" - ], + "variant_key": [], "condition_note": [ "지름(㎝) 공종", "단위", @@ -42199,7 +40646,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-13-11-02", @@ -42226,11 +40674,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "조약돌량(㎥)", - "인력(인)", - "돌 채 움" - ], + "variant_key": [], "condition_note": [ "지름(㎝) 공종", "40", @@ -42298,12 +40742,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "조립 설치", - "보통인부", - "돌채움", - "굴착기 (1.0㎥)" - ], + "variant_key": [], "condition_note": [ "지름(㎝) 공종", "단위", @@ -42371,7 +40810,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-13-11-03", @@ -42398,10 +40838,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "특별인부", - "보통인부" - ], + "variant_key": [], "condition_note": [ "구 분", "단 위", @@ -42423,7 +40860,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-13-11-04", @@ -42450,15 +40888,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "자재", - "채움재", - "잡재료", - "인력", - "특별인부", - "보통인부", - "장비" - ], + "variant_key": [], "condition_note": [ "구 분", "단 위", @@ -42517,7 +40947,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-13-12", @@ -42527,7 +40958,8 @@ "parent_code": "FP-13", "sort_order": 118016, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-13-12-01", @@ -42554,12 +40986,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "보통토사", - "절 취(㎥)", - "투 입(㎥)", - "면고르기(시간)" - ], + "variant_key": [], "condition_note": [ "구 분 공정별", "보통인부(인)", @@ -42596,7 +41023,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-13-12-02", @@ -42623,11 +41051,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "작 업 반 장", - "특 별 인 부", - "보 통 인 부" - ], + "variant_key": [], "condition_note": [ "구 분", "수 량", @@ -42670,11 +41094,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "4m 표준", - "4 ~ 10m", - "10m 이상" - ], + "variant_key": [], "condition_note": [ "구 분 공정별", "1:2 표준", @@ -42706,7 +41126,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-13-13", @@ -42716,7 +41137,8 @@ "parent_code": "FP-13", "sort_order": 118784, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-13-13-01", @@ -42744,10 +41166,7 @@ "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ - "보통구조", "중", - "상", - "중등구조", "상등구조" ], "condition_note": [ @@ -42801,6 +41220,10 @@ ] ] } + ], + "variant_keys": [ + "중", + "상등구조" ] }, { @@ -42836,13 +41259,7 @@ ], "special_glyphs": [], "capacity_formula_here": true, - "variant_key": [ - "인력(10%)", - "장비(90%)", - "f", - "E", - "㎝(sec)" - ], + "variant_key": [], "condition_note": [ "구 분", "적 용", @@ -42904,9 +41321,7 @@ "capacity_formula_here": false, "variant_key": [ "식생매트설치", - "특 별 인 부", - "보 통 인 부", - "굴 삭 기" + "복 토" ], "condition_note": [ "구 분", @@ -42987,6 +41402,12 @@ ] ] } + ], + "variant_keys": [ + "식생매트설치", + "복 토", + "간 단 구 조", + "보 통 구 조" ] }, { @@ -43042,6 +41463,11 @@ ] ] } + ], + "variant_keys": [ + "단 끊 기", + "흙채우기(마대채우기)", + "마대쌓기" ] }, { @@ -43052,7 +41478,8 @@ "parent_code": "FP-13", "sort_order": 119808, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-13-15-01", @@ -43079,9 +41506,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "보 통 인 부" - ], + "variant_key": [], "condition_note": [ "말구 직종", "5cm", @@ -43111,7 +41536,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-13-15-02", @@ -43140,10 +41566,7 @@ "~(U+FF5E)" ], "capacity_formula_here": false, - "variant_key": [ - "어려운 조건", - "쉬운 조건" - ], + "variant_key": [], "condition_note": [ "작업조건", "벌도목 직경", @@ -43182,10 +41605,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "어려운 조건", - "쉬운 조건" - ], + "variant_key": [], "condition_note": [ "작업조건", "소요인력", @@ -43204,7 +41624,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-13-15-03", @@ -43213,7 +41634,8 @@ "level": 3, "parent_code": "FP-13-15", "sort_order": 120576, - "tables": [] + "tables": [], + "variant_keys": [] }, { "work_item_code": "FP-13-16", @@ -43223,7 +41645,8 @@ "parent_code": "FP-13", "sort_order": 120832, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-13-16-01", @@ -43254,11 +41677,7 @@ "capacity_formula_here": false, "variant_key": [ "사 면", - "도로/철도", - "특별인부", - "보통인부", - "잠 수 조", - "굴 삭 기" + "연약지반" ], "condition_note": [ "구 분", @@ -43330,6 +41749,10 @@ ] ] } + ], + "variant_keys": [ + "사 면", + "연약지반" ] }, { @@ -43362,8 +41785,7 @@ "capacity_formula_here": false, "variant_key": [ "폭 1.5m 이하", - "조 경 공", - "보 통 인 부" + "폭 2.0m 이하" ], "condition_note": [ "구 분", @@ -43395,6 +41817,10 @@ ] ] } + ], + "variant_keys": [ + "폭 1.5m 이하", + "폭 2.0m 이하" ] }, { @@ -43405,7 +41831,8 @@ "parent_code": null, "sort_order": 121600, "tables": [], - "parent_mode": "choose_one" + "parent_mode": "choose_one", + "variant_keys": [] }, { "work_item_code": "FP-14-01", @@ -43432,10 +41859,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "0.8㎥ 굴착기(우드그랩 부착)", - "보통인부" - ], + "variant_key": [], "condition_note": [ "장 비", "단 위", @@ -43457,7 +41881,8 @@ ] ] } - ] + ], + "variant_keys": [] }, { "work_item_code": "FP-14-02", @@ -43484,10 +41909,7 @@ "formula_rows": [], "special_glyphs": [], "capacity_formula_here": false, - "variant_key": [ - "0.8㎥ 굴착기", - "보통인부" - ], + "variant_key": [], "condition_note": [ "장 비", "단 위", @@ -43509,7 +41931,8 @@ ] ] } - ] + ], + "variant_keys": [] } ] } \ No newline at end of file diff --git a/resources/tester/test_work_item_master_variants.py b/resources/tester/test_work_item_master_variants.py new file mode 100644 index 00000000..3e0983c8 --- /dev/null +++ b/resources/tester/test_work_item_master_variants.py @@ -0,0 +1,49 @@ +"""공종 마스터 갈래 키 `variant_key` — 표 읽기가 가른 대로 (명세 14장 정정 · 2026-09-13). + +지키는 것 + ① 짝 시험 — 단가표의 `B-<코드>#<갈래>` 제목은 **전부** 그 공종의 마스터 갈래 키에 있다 + (종전 첫 열 24개 방식은 294 중 86). 표 읽기를 고치고 마스터를 안 다시 뽑으면 여기서 걸림 + ② 머리행 갈래(벌목)·뭉친 이름 표(찰쌓기 장비)는 머리행에서 · 첫 열이 자원 이름인 표는 빈칸 + ③ 합산형 부모는 단계 갈래를 물려받음(흙깎기 리핑암 9-4 = 암질 + [주]① 평균) +""" + +from __future__ import annotations + +from B09_Estimation.B09_Estimation_ResourceAxis import load_work_item_master +from B09_Estimation.B09_Estimation_UnitPrice import cached_build, normalize_variant_key + + +def _nodes() -> dict[str, dict]: + return {node["work_item_code"]: node for node in load_work_item_master()["work_items"]} + + +def test_단가표_갈래_제목은_전부_마스터_갈래_키에_있다() -> None: + nodes = _nodes() + missing = [] + for code in cached_build().book.titles: + if not code.startswith("B-") or "#" not in code: + continue + work_item, variant = code[2:].split("#", 1) + keys = { + normalize_variant_key(k) for k in nodes.get(work_item, {}).get("variant_keys") or [] + } + if variant not in keys: + missing.append(code) + assert not missing, f"마스터를 다시 뽑을 것(B08_Quantity_Build_WorkItemMaster): {missing[:5]}" + + +def test_표_모양대로_갈래를_가르고_못_가르면_빈칸() -> None: + nodes = _nodes() + felling = nodes["FP-04-02-02"]["tables"][0]["variant_key"] + assert "5m이상~8m미만" in felling # 머리행 갈래 — 첫 열(자원 이름)이 아님 + assert nodes["FP-13-04-05"]["tables"][0]["variant_key"] == [ + "35cm 이하", + "55cm 이하", + "75cm 이하", + ] + finishing = next(t for t in nodes["FP-12-02"]["tables"] if t["pum_table_id"] == "F0334") + assert finishing["variant_key"] == [] # 첫 열이 자원 이름(미장공)인 표 + + +def test_합산형_부모는_단계_갈래를_물려받는다() -> None: + assert _nodes()["FP-09-04"]["variant_keys"] == ["연암", "보통암", "경암", "평균"]