automapper-validation 0.1.47

AHB condition expression parsing, evaluation, and EDIFACT validation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
{
  "generated_at": "2026-03-12T10:15:42Z",
  "ahb_file": "UTILMD_AHB_Strom_2_1_Fehlerkorrektur_20250623.xml",
  "format_version": "FV2504",
  "conditions": {
    "444": {
      "confidence": "medium",
      "reasoning": "Checks whether any SG8 instance carrying a 'Produkt-Daten der Netzlokation' SEQ qualifier (Z60, ZE0, ZG8, ZG9) lacks PIA+5. Iterates each qualifier separately using any_group_has_qualifier_without which checks: SEQ+code present AND PIA+5 absent in same SG8. Returns True on first match. Correctly handles the multi-qualifier case via OR iteration.",
      "description_hash": "4eb80c31",
      "is_external": false
    },
    "902": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "08daa39a",
      "is_external": false
    },
    "42": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "1fb7e173",
      "is_external": false
    },
    "427": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "f04dbc42",
      "is_external": true
    },
    "37": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "8ae2fa4a",
      "is_external": true
    },
    "445": {
      "confidence": "medium",
      "reasoning": "Iterates all SG8 instances and checks whether any SG10 child group contains CCI with elements[0][0]==\"11\" (Details zum Produkt der Netzlokation). Returns True when an SG8 is found that lacks such a CCI+11 in its SG10 children. Navigator fallback uses filtered_parent_child_has_qualifier negated per qualifier. Approximation: the navigator path does not filter SG8 instances by Produkt-Daten-Netzlokation SEQ qualifier due to absence of find_segments_in_group; checks all SG8 instances instead.",
      "description_hash": "559035fc",
      "is_external": false
    },
    "150": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "d2753a5e",
      "is_external": false
    },
    "2013": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "25eaf1c0",
      "is_external": false
    },
    "65": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "5a3ddd72",
      "is_external": false
    },
    "637": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "849c0f3f",
      "is_external": false
    },
    "33": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "bd14f5f1",
      "is_external": true
    },
    "301": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "70d369d5",
      "is_external": false
    },
    "948": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "032905d1",
      "is_external": false
    },
    "175": {
      "confidence": "medium",
      "reasoning": "Cross-SG8 check: find all SG8 instances with SEQ+Z58 that also have RFF+Z33. Check whether any Objektcode (DE1154) with the same fortlaufende Nummer (DE1156) appears in two distinct SG8 instances. Uses nav.find_segments_in_group to access SG8-level segments directly, following the existing navigator pattern.",
      "description_hash": "bfb371c3",
      "is_external": false
    },
    "179": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "1f917293",
      "is_external": false
    },
    "229": {
      "confidence": "medium",
      "reasoning": "Detects if the same (SEQ-qualifier, Zeitraum-ID, RFF+Z33-Objektcode) triple appears in two different SG8 instances — which is what the condition guards against. Uses collect_group_values to correlate SEQ and RFF data by SG8 instance index. Limitation: collect_group_values may only return the first RFF per SG8 instance, so Z33 may be missed if it is not the first RFF in the group.",
      "description_hash": "882ecd3b",
      "is_external": false
    },
    "249": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "cb0d4e61",
      "is_external": false
    },
    "103": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "0382c3fd",
      "is_external": false
    },
    "71": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "86b1ae5a",
      "is_external": false
    },
    "601": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "eb326193",
      "is_external": false
    },
    "237": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "b4d4e1ac",
      "is_external": false
    },
    "696": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "2f609738",
      "is_external": false
    },
    "510": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "72d664cc",
      "is_external": false
    },
    "579": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "db52b71b",
      "is_external": false
    },
    "533": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "6241f54b",
      "is_external": false
    },
    "555": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "c9dd091a",
      "is_external": false
    },
    "391": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "69c7f13f",
      "is_external": false
    },
    "512": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "0d6aec58",
      "is_external": false
    },
    "559": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "4c48eb52",
      "is_external": false
    },
    "719": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "ea9f8aa0",
      "is_external": false
    },
    "2287": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "2886ccbe",
      "is_external": false
    },
    "2318": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "4ef57ef5",
      "is_external": false
    },
    "149": {
      "confidence": "medium",
      "reasoning": "Condition checks whether two SG8 SEQ+Z45 groups with the same Zeitraum-ID (elements[1][0]) each contain PIA+Z02 (DE4347=Z02) with product codes '1-02-0-017' and '1-02-0-018'. Uses collect_group_values to gather SEQ qualifiers and Zeitraum-IDs per group instance, then PIA qualifiers and product codes (elements[1][0]=DE7140) per group instance. Positional alignment of pia_quals and pia_prods (both from same PIA segments in same order) enables reliable qualifier-to-product matching. Groups product codes by Zeitraum-ID to check co-occurrence.",
      "description_hash": "cd79c32f",
      "is_external": false
    },
    "327": {
      "confidence": "medium",
      "reasoning": "Step 1: Collect all SEQ DE1050 Zeitraum-IDs. Step 2: Find RFF+Z47/Z48/Z49 (Verwendungszeitraum) whose DE1156 (elements[0][2]) matches. Step 3: Check co-located DTM+Z25 DE2380 (elements[0][1]) >= threshold after normalising EDIFACT escape '?+' to '+'. Falls back to message-wide DTM search which may give false positives if multiple SG6 groups are present, but is sufficient for typical single-transaction messages.",
      "description_hash": "8f220ad7",
      "is_external": false
    },
    "336": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "eaa7fa09",
      "is_external": false
    },
    "220": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "9b4f21c1",
      "is_external": false
    },
    "315": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "75488547",
      "is_external": true
    },
    "494": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e0eddcc9",
      "is_external": false
    },
    "599": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "efb5859c",
      "is_external": false
    },
    "36": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "3a283c72",
      "is_external": true
    },
    "392": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "5e173ce1",
      "is_external": false
    },
    "395": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "00540387",
      "is_external": false
    },
    "460": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "fbc28059",
      "is_external": true
    },
    "952": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "1871f37e",
      "is_external": false
    },
    "436": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "9ef2edec",
      "is_external": false
    },
    "706": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "2df01ec6",
      "is_external": true
    },
    "2359": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "be697644",
      "is_external": false
    },
    "2119": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "d8df28ed",
      "is_external": false
    },
    "2010": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "b105db50",
      "is_external": false
    },
    "2344": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "7768d5d8",
      "is_external": false
    },
    "35": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "4f52c394",
      "is_external": false
    },
    "128": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "4b98ddd9",
      "is_external": false
    },
    "518": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "34370280",
      "is_external": false
    },
    "97": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "648cfd4a",
      "is_external": false
    },
    "2073": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "ce6cdef9",
      "is_external": false
    },
    "104": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "c4b4d0a5",
      "is_external": false
    },
    "394": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "2bf94446",
      "is_external": false
    },
    "85": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "3e99d6b0",
      "is_external": false
    },
    "161": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "73cfcc2f",
      "is_external": false
    },
    "41": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "068a4fcf",
      "is_external": false
    },
    "269": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "77dcd3ae",
      "is_external": false
    },
    "127": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "6310151d",
      "is_external": false
    },
    "257": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "d66be7c8",
      "is_external": false
    },
    "630": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "78dab544",
      "is_external": false
    },
    "2236": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "c646fcdc",
      "is_external": false
    },
    "468": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "5ab338e0",
      "is_external": false
    },
    "180": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "10a8ce18",
      "is_external": false
    },
    "261": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "78ec7884",
      "is_external": false
    },
    "14": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "d089cab4",
      "is_external": true
    },
    "527": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "0ffca981",
      "is_external": false
    },
    "337": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "aec7e084",
      "is_external": false
    },
    "580": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "7fddf781",
      "is_external": false
    },
    "476": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "7a115e59",
      "is_external": false
    },
    "2261": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "7163c8e0",
      "is_external": false
    },
    "331": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "775ecbd3",
      "is_external": false
    },
    "405": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "8c47a1d6",
      "is_external": false
    },
    "447": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "15e9577a",
      "is_external": false
    },
    "671": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "29c8f496",
      "is_external": false
    },
    "130": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e6eba96d",
      "is_external": false
    },
    "651": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "6191e3d8",
      "is_external": false
    },
    "960": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "0ce0bd80",
      "is_external": false
    },
    "618": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "863c5eb1",
      "is_external": false
    },
    "2006": {
      "confidence": "medium",
      "reasoning": "Counts SG8 instances with SEQ+Z01 where condition [199] is fulfilled and collects their Zeitraum-IDs from SEQ elements[1][0]. Returns True if at least one qualifying parent exists (cardinality enforcement is partial — full 'exactly once' check requires knowing the current SG type). The recursive call self.evaluate(199, ctx) operates at message scope, which is the best available approximation.",
      "description_hash": "f687cf18",
      "is_external": false
    },
    "506": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "c0a27ae2",
      "is_external": false
    },
    "642": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "5da0f2ea",
      "is_external": false
    },
    "140": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "51743cc9",
      "is_external": false
    },
    "339": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "77670050",
      "is_external": false
    },
    "8": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "d48f1537",
      "is_external": true
    },
    "106": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "aba7f000",
      "is_external": false
    },
    "134": {
      "confidence": "medium",
      "reasoning": "Validates time-slice continuity for Z48/Z55 (Erwartete Daten/Keine Daten erwartet) SG6 groups: every slice with Zeitraum-ID > 1 must have its DTM+Z25 (start date) equal to the DTM+Z26 (end date) of the preceding slice. Zeitraum-ID is in RFF.C506.DE1156 = elements[0][2]. Requires navigator for per-SG6-instance DTM extraction.",
      "description_hash": "f450ba7a",
      "is_external": false
    },
    "248": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "9f6714fc",
      "is_external": false
    },
    "359": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e0fa5b53",
      "is_external": false
    },
    "204": {
      "confidence": "medium",
      "reasoning": "Checks each Zähleinrichtungsdaten SEQ qualifier (Z03/ZA3/ZA4) — if any SG8 instance has that SEQ qualifier but no RFF+Z14 (Smartmeter-Gateway reference), the condition is true. The additional Zeitraum-ID and Gerätenummer cross-matching from the full condition text cannot be implemented without per-instance SG8 segment access.",
      "description_hash": "c115e216",
      "is_external": false
    },
    "682": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "44d5a000",
      "is_external": false
    },
    "117": {
      "confidence": "medium",
      "reasoning": "Full condition requires: (1) current SG8 has RFF+Z18=X, (2) another SG8 with SEQ+Z01 also has RFF+Z18=X, (3) that SG8 has SG10 with CCI elements[2][0]='ZA6' AND CAV elements[0][0]='E14'. Implementation simplifies to checking whether any SG8 has SG10 with both CCI+++ZA6 and CAV+E14 co-occurring in the same SG10 instance. The cross-SG RFF+Z18 value correlation and SEQ+Z01 parent check are omitted because the navigator API only exposes child-group segments (SG10 within SG8), not SG8's own entry segments. Medium confidence due to this structural limitation.",
      "description_hash": "eb20a943",
      "is_external": false
    },
    "279": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "673515a9",
      "is_external": false
    },
    "566": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "6182ad8a",
      "is_external": false
    },
    "678": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "83b4811e",
      "is_external": false
    },
    "67": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "3425657a",
      "is_external": false
    },
    "92": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "91b75fa8",
      "is_external": false
    },
    "402": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "ba9336cd",
      "is_external": false
    },
    "409": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "842dd489",
      "is_external": false
    },
    "165": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "963140b3",
      "is_external": false
    },
    "933": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "b5e9c81e",
      "is_external": false
    },
    "64": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "ddfd7cc5",
      "is_external": false
    },
    "521": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "35e24e67",
      "is_external": false
    },
    "2011": {
      "confidence": "medium",
      "reasoning": "Condition requires checking Zeitraum-IDs from DE1156 of SG6 RFF+Z49/Z53 ('Verwendungszeitraum der Daten: Gültige Daten / Keine Daten') that originated in the REQUEST message referenced by SG6 RFF+TN DE1154. The referenced request message is a separate EDIFACT interchange not present in the current message being validated. The cardinality constraint ('exactly once per Zeitraum-ID from the request') is therefore an external business context check that depends on data from a prior message in the business process.",
      "description_hash": "c394ac70",
      "is_external": true
    },
    "668": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "fc95b443",
      "is_external": false
    },
    "108": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "2be61e58",
      "is_external": false
    },
    "173": {
      "confidence": "medium",
      "reasoning": "Condition is True when, in an SG8 with SEQ+Z58/ZC9/ZD0/ZD6 (Zuordnung Lokation zum Objektcode), RFF+Z33 exists but its DE1156 (elements[0][2] = Fortlaufende Nummer) is absent or empty. Uses collect_group_values to find target SG8 group indices by SEQ qualifier, then positionally aligns rff_quals[i] with rff_de1156[i] (same RFF segment) to check DE1156 emptiness scoped to those groups. Returns Unknown if no RFF+Z33 found in target groups (condition not applicable), False if all RFF+Z33 have DE1156 present.",
      "description_hash": "439f106b",
      "is_external": false
    },
    "53": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "180aaa70",
      "is_external": false
    },
    "287": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "eb447898",
      "is_external": false
    },
    "531": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "4cfd44cd",
      "is_external": false
    },
    "688": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "69ea24c8",
      "is_external": false
    },
    "2017": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "09268cfa",
      "is_external": false
    },
    "124": {
      "confidence": "medium",
      "reasoning": "Extends condition 123 by also requiring that the matching SG8 groups share the same Zeitraum-ID (from SEQ.elements[1][0] = DE1050 / C286.d1050). Both the Zeitraum-ID and the RFF+MG device number must be identical across at least two different SG8 instances with SEQ+Z20 for the condition to be True.",
      "description_hash": "331af472",
      "is_external": false
    },
    "2140": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "6d50bb4d",
      "is_external": false
    },
    "513": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "adb10194",
      "is_external": false
    },
    "138": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "951ff34e",
      "is_external": false
    },
    "153": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "ffcc30a9",
      "is_external": false
    },
    "572": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "58a57b5c",
      "is_external": false
    },
    "454": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "6c8fd23b",
      "is_external": false
    },
    "266": {
      "confidence": "medium",
      "reasoning": "Navigates all SG8 instances and their SG10 children, checking for CCI with elements[2][0]=ZA6 (Prognosegrundlage) co-occurring with CAV with elements[0][0]=Z36 (TEP m. Referenzmessung) in the same SG10 instance. The parent SG8 SEQ+Z01 filter and Zeitraum-ID cross-matching are not verified due to lack of direct SG8-level segment access; relies on CCI+ZA6/CAV+Z36 being specific enough to Marktlokation groups.",
      "description_hash": "5843fac6",
      "is_external": false
    },
    "683": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "4d263faa",
      "is_external": false
    },
    "2313": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "2643e6c2",
      "is_external": false
    },
    "305": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "80d3002e",
      "is_external": false
    },
    "655": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "66cc6ced",
      "is_external": false
    },
    "942": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "857011a9",
      "is_external": false
    },
    "91": {
      "confidence": "medium",
      "reasoning": "Logical negation of condition 90. Condition 91 is explicitly defined as 'Wenn NICHT (CCI+++ZA6 einmal mit CAV+E14 und einmal mit CAV+E02 in dieser SG8 vorhanden)', which is the exact complement of condition 90. Preserving Unknown propagation handles the no-navigator fallback case correctly.",
      "description_hash": "f5073bc2",
      "is_external": false
    },
    "679": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "fbfe3cb5",
      "is_external": false
    },
    "675": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "0777e035",
      "is_external": false
    },
    "293": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "bde48d27",
      "is_external": false
    },
    "458": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "2fbfcde0",
      "is_external": false
    },
    "2357": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "1d3fc3cc",
      "is_external": false
    },
    "459": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "798b5901",
      "is_external": true
    },
    "303": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e927b648",
      "is_external": false
    },
    "61": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "4dfa16b3",
      "is_external": false
    },
    "145": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "fe684b5d",
      "is_external": false
    },
    "407": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "eceb0e2d",
      "is_external": false
    },
    "504": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "a0d3dae0",
      "is_external": false
    },
    "121": {
      "confidence": "high",
      "reasoning": "Checks if in any SG8 where SEQ has qualifier Z03 or ZF5 (Zähleinrichtungsdaten), the RFF+Z14 (Smartmeter-Gateway reference) is absent. Uses any_group_has_qualifier_without for each SEQ qualifier variant with OR logic — True when such a Z03/ZF5 SG8 exists that lacks RFF+Z14.",
      "description_hash": "d0f8c420",
      "is_external": false
    },
    "216": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "babbeb49",
      "is_external": false
    },
    "335": {
      "confidence": "medium",
      "reasoning": "Collects Zeitraum-IDs from SEQ+Z58 DE1050 (elements[1][0]). Verifies an SG8 with SEQ+Z78 exists (entry for Lokationsbündelstruktur). Collects IDs from RFF+Z31 DE1154 (elements[0][1]) and checks if any SEQ+Z58 Zeitraum-ID matches. Co-location of RFF+Z31 with SEQ+Z78 in the same SG8 instance is approximated message-wide; exact co-location verification would require navigator SG8-level segment access.",
      "description_hash": "2ed8aa40",
      "is_external": false
    },
    "490": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "d566ca5a",
      "is_external": false
    },
    "2008": {
      "confidence": "medium",
      "reasoning": "Same structure as [2006/2007] but references condition [89] instead of [199]. Counts qualifying SG8 SEQ+Z01 instances where condition [89] is fulfilled and collects their Zeitraum-IDs from SEQ elements[1][0]. The recursive self.evaluate(89, ctx) call operates at message scope.",
      "description_hash": "3f742240",
      "is_external": false
    },
    "2002": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "5cd682e8",
      "is_external": false
    },
    "408": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "b9a3d72e",
      "is_external": false
    },
    "2351": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "7177d5ea",
      "is_external": false
    },
    "2207": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "7f81cd08",
      "is_external": false
    },
    "2252": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "86634200",
      "is_external": false
    },
    "72": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "effca6ea",
      "is_external": false
    },
    "695": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e5e78b45",
      "is_external": false
    },
    "40": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "6fa5b1c4",
      "is_external": true
    },
    "516": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "52fbdf12",
      "is_external": false
    },
    "6": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "4b435776",
      "is_external": true
    },
    "198": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "3caf3d75",
      "is_external": false
    },
    "66": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "d86e3329",
      "is_external": false
    },
    "446": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "61257f21",
      "is_external": false
    },
    "508": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "2ea659cd",
      "is_external": false
    },
    "151": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "15e32249",
      "is_external": true
    },
    "426": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "a06218d1",
      "is_external": true
    },
    "60": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "92cafedb",
      "is_external": false
    },
    "448": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "a817b70d",
      "is_external": false
    },
    "700": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "1b42ae09",
      "is_external": false
    },
    "377": {
      "confidence": "medium",
      "reasoning": "Checks if any SG8 has a child SG10 with CCI[0]='15' and CCI[2]='Z21' (Überführungszeitreihentyp) followed by CAV with value 'AUS'. Follows the navigator pattern from example 10 exactly.",
      "description_hash": "f8137e47",
      "is_external": false
    },
    "111": {
      "confidence": "high",
      "reasoning": "Same-group absence: condition is True when some SG8 instance contains SEQ+Z59 but lacks PIA+5. Directly maps to any_group_has_qualifier_without. SEQ+Z59 per AHB notation → elements[0][0]='Z59'; PIA+5 → elements[0][0]='5'.",
      "description_hash": "17226a62",
      "is_external": false
    },
    "384": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "9b785585",
      "is_external": false
    },
    "2018": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "adf4d697",
      "is_external": false
    },
    "126": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "9ab643c3",
      "is_external": false
    },
    "144": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "b8d3f6d3",
      "is_external": false
    },
    "334": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "8cea5aed",
      "is_external": false
    },
    "433": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "cf0c5db5",
      "is_external": true
    },
    "2060": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "5a36ad08",
      "is_external": false
    },
    "318": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "7f927de7",
      "is_external": false
    },
    "2308": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "4fc0409d",
      "is_external": false
    },
    "13": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "95c62c31",
      "is_external": false
    },
    "114": {
      "confidence": "medium",
      "reasoning": "Checks that CCI+E03 (Spannungsebene, elements[0][0]='E03' per AHB hint) and CAV+E06 (Niederspannung, elements[0][0]='E06') co-occur in the same SG10 child instance of some SG8. Uses navigator to iterate SG8→SG10 pairs and verify both segments within the same SG10 instance. Confidence medium because navigator availability is runtime-dependent and fallback is message-wide only.",
      "description_hash": "347872b2",
      "is_external": false
    },
    "699": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "ab61d333",
      "is_external": false
    },
    "219": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e2678c69",
      "is_external": false
    },
    "232": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "4d86b140",
      "is_external": false
    },
    "714": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "802bfb97",
      "is_external": false
    },
    "1": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "4ebb4e5c",
      "is_external": true
    },
    "412": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "5668473b",
      "is_external": true
    },
    "223": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "897f31cc",
      "is_external": false
    },
    "43": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "973ff593",
      "is_external": false
    },
    "415": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "3204f4c2",
      "is_external": false
    },
    "479": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "51cd8493",
      "is_external": false
    },
    "662": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "3ec86866",
      "is_external": false
    },
    "524": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "15ef01b4",
      "is_external": false
    },
    "715": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "d0b25250",
      "is_external": false
    },
    "358": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "da55aacf",
      "is_external": false
    },
    "46": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "0521cfd8",
      "is_external": false
    },
    "664": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "6f8221e3",
      "is_external": false
    },
    "48": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "5de42b37",
      "is_external": false
    },
    "9": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "d9990b82",
      "is_external": true
    },
    "38": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "ab0d254c",
      "is_external": true
    },
    "314": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "aa99d2df",
      "is_external": true
    },
    "465": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "5382b3da",
      "is_external": false
    },
    "514": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "b7cc061b",
      "is_external": false
    },
    "340": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "d9f52cec",
      "is_external": false
    },
    "567": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e0f57266",
      "is_external": false
    },
    "2286": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e8d661bf",
      "is_external": false
    },
    "259": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "f2af5c07",
      "is_external": false
    },
    "74": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "64637f3b",
      "is_external": false
    },
    "505": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "0f316d72",
      "is_external": false
    },
    "594": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "5f897f4f",
      "is_external": false
    },
    "224": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "9e0d1524",
      "is_external": false
    },
    "184": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "100a1bfd",
      "is_external": false
    },
    "416": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "6718c6c6",
      "is_external": false
    },
    "24": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "17b52555",
      "is_external": false
    },
    "419": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "90c80f8d",
      "is_external": false
    },
    "2061": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "6282c707",
      "is_external": false
    },
    "209": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "0e2d44dd",
      "is_external": false
    },
    "2352": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "49be6eaf",
      "is_external": false
    },
    "366": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "a9fc4d3c",
      "is_external": false
    },
    "926": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "3e15920e",
      "is_external": false
    },
    "172": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "855b09c2",
      "is_external": false
    },
    "577": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "79effddc",
      "is_external": false
    },
    "32": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "79265978",
      "is_external": false
    },
    "520": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "7b69f191",
      "is_external": false
    },
    "280": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "f3221dba",
      "is_external": false
    },
    "530": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "5cf2c4db",
      "is_external": false
    },
    "2015": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "7cc896c3",
      "is_external": false
    },
    "139": {
      "confidence": "medium",
      "reasoning": "Condition is True when SG10 CAV+IVA (Individuelle Abstimmung) is NOT present anywhere. Uses parent-child navigation to iterate all SG8 instances and their SG10 child groups, checking CAV elements[0][0] for 'IVA'. Falls back to message-wide lacks_qualifier when no navigator is available. Returns False as soon as any CAV+IVA is found, True if none found.",
      "description_hash": "965d888d",
      "is_external": false
    },
    "467": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "cf4a34ae",
      "is_external": false
    },
    "471": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "f4d317d3",
      "is_external": false
    },
    "45": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "5f40c81d",
      "is_external": false
    },
    "98": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "b51d892c",
      "is_external": true
    },
    "174": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "bbd45a9c",
      "is_external": false
    },
    "122": {
      "confidence": "medium",
      "reasoning": "Uses filtered_parent_child_has_qualifier to find SG8 instances where SEQ+Z98 has an SG10 child with CCI at elements[2]='E03' (Spannungsebene der Marktlokation). Then confirms CAV+E06 (Niederspannung) exists in an SG8 group. The CAV check is group-scoped rather than strictly same-SG10-instance because the navigator API does not directly expose parent-group (SG8) segment access alongside child-group (SG10) checks in one call.",
      "description_hash": "a42d6a75",
      "is_external": false
    },
    "950": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "a9ddfaec",
      "is_external": false
    },
    "12": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "c8244b0e",
      "is_external": false
    },
    "205": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "5299158b",
      "is_external": false
    },
    "2284": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "1d0edecf",
      "is_external": false
    },
    "368": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "a6f84e60",
      "is_external": false
    },
    "345": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "36b39d1d",
      "is_external": false
    },
    "474": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "c1724d6c",
      "is_external": false
    },
    "477": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "45693558",
      "is_external": false
    },
    "62": {
      "confidence": "medium",
      "reasoning": "Iterates SG8 instances within each SG4, finds those with SEQ+Z45 and a non-empty Zeitraum-ID in elements[1][0]. Checks if PIA+Z02 in the same SG8 has a product code (elements[1][0]) beginning with 1-08-1 through 1-08-5. Groups by Zeitraum-ID and checks if any ID appears more than once. Requires navigator for per-instance group segment access; returns Unknown without one.",
      "description_hash": "da005567",
      "is_external": false
    },
    "586": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "52312882",
      "is_external": false
    },
    "659": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e1920ced",
      "is_external": false
    },
    "663": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "bffa2d02",
      "is_external": false
    },
    "684": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "33c05e4d",
      "is_external": false
    },
    "102": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "2d431295",
      "is_external": false
    },
    "299": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "c785696e",
      "is_external": false
    },
    "352": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "10e29e0e",
      "is_external": false
    },
    "940": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "de8363bc",
      "is_external": false
    },
    "469": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "1998b141",
      "is_external": false
    },
    "2004": {
      "confidence": "medium",
      "reasoning": "Collects Zeitraum-IDs from SG6 RFF+Z49 DE1156 (elements[0][2]) by correlating qualifier (elements[0][0]) and ID (elements[0][2]) vectors via shared SG6 instance index. Then collects all SEQ DE1050 (elements[1][0]) references from SG8 instances. For each Zeitraum-ID from SG6 RFF+Z49, counts matching SG8 SEQ references; returns False if any count != 1 (violates 'exactly once' cardinality). Returns Unknown if no RFF+Z49 Zeitraum-IDs exist.",
      "description_hash": "2251b21a",
      "is_external": false
    },
    "90": {
      "confidence": "medium",
      "reasoning": "Within each SG8, iterates all SG10 child instances. For each SG10 that has a CCI with elements[2][0]=ZA6, checks the CAV elements[0][0] value. Tracks whether E14 and E02 have both been seen within the same SG8. Returns True when both are found in a single SG8, satisfying the requirement that both Prognosegrundlage options appear 'in dieser SG8'.",
      "description_hash": "e7b10cf9",
      "is_external": false
    },
    "2309": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "492da901",
      "is_external": false
    },
    "462": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "c2587cf1",
      "is_external": false
    },
    "202": {
      "confidence": "medium",
      "reasoning": "Collects Zeitraum-IDs from SG5 LOC.DE3224 (elements[1][3]), checks SEQ+Z78 DE1050 (elements[1][0]) for a match, then verifies RFF+Z39 exists. Co-occurrence of SEQ+Z78 and RFF+Z39 in the same SG8 instance is not verified without navigator group-instance access.",
      "description_hash": "74f2cca3",
      "is_external": false
    },
    "54": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "6dbfa9ce",
      "is_external": false
    },
    "614": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "377313b3",
      "is_external": false
    },
    "570": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "3cae0941",
      "is_external": false
    },
    "110": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "1187185a",
      "is_external": false
    },
    "206": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "7139fa8a",
      "is_external": false
    },
    "63": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "d4e33cb0",
      "is_external": false
    },
    "217": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "b348d9dd",
      "is_external": false
    },
    "176": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "838ed575",
      "is_external": false
    },
    "55": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e6731677",
      "is_external": false
    },
    "10": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "d04ca26f",
      "is_external": true
    },
    "302": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "6f0aa67b",
      "is_external": false
    },
    "30": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "96276831",
      "is_external": false
    },
    "57": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "0061c8a4",
      "is_external": false
    },
    "197": {
      "confidence": "medium",
      "reasoning": "Two-phase cross-SG8 check. Phase 1: collect Marktlokation IDs from SG8 instances that (a) have SEQ+Z01 and (b) have an SG10 child with CCI elements[2][0]=ZA6 and CAV elements[0][0]=E02. Phase 2: check whether any SG8's RFF+Z18 references one of those qualifying Marktlokation IDs, establishing the cross-reference described in the condition.",
      "description_hash": "9cb21441",
      "is_external": false
    },
    "371": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "1b28a132",
      "is_external": false
    },
    "132": {
      "confidence": "medium",
      "reasoning": "Validates that when RFF in SG6 has Zeitraum-ID '1' (elements[0][2] = DE1156), the DTM+Z25 date must equal the day immediately following DTM+137 (Nachrichtendatum) at 00:00. Parses the YYYYMMDD portion of DTM+137, computes next calendar day with correct month/year rollover, then checks that DTM+Z25's first 12 characters match YYYYMMDDHHMM with HHMM=0000. Note: German timezone offset (CET/CEST) validation is not performed — this checks the stored datetime value directly, which is the common encoding in EDIFACT 303 format for this use case.",
      "description_hash": "f890cad7",
      "is_external": false
    },
    "69": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "86ea0ff5",
      "is_external": false
    },
    "152": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "bacb16eb",
      "is_external": false
    },
    "937": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e3f49bb8",
      "is_external": false
    },
    "297": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e6def540",
      "is_external": false
    },
    "961": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "99d3e1d7",
      "is_external": false
    },
    "58": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "081389d4",
      "is_external": false
    },
    "163": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "84429a65",
      "is_external": false
    },
    "317": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "49823bbd",
      "is_external": false
    },
    "938": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "6ca307d1",
      "is_external": false
    },
    "2080": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "a16070ae",
      "is_external": false
    },
    "101": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "604d44a7",
      "is_external": false
    },
    "115": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "023653eb",
      "is_external": false
    },
    "221": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "3211d793",
      "is_external": false
    },
    "2317": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "ce2ceeb0",
      "is_external": false
    },
    "2225": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "c8f889b1",
      "is_external": false
    },
    "4": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "55130474",
      "is_external": true
    },
    "113": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "155997d7",
      "is_external": false
    },
    "294": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "99c6e644",
      "is_external": false
    },
    "347": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "d91213f3",
      "is_external": false
    },
    "350": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "41278295",
      "is_external": false
    },
    "470": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "293df79d",
      "is_external": false
    },
    "351": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "b8645e50",
      "is_external": false
    },
    "430": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "f322aa9d",
      "is_external": false
    },
    "631": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "730c3e29",
      "is_external": false
    },
    "292": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "51849336",
      "is_external": true
    },
    "16": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "01e37a5a",
      "is_external": false
    },
    "355": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "1e50f046",
      "is_external": false
    },
    "653": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "9df02a0d",
      "is_external": false
    },
    "2014": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "aac4d27b",
      "is_external": false
    },
    "673": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "317b279d",
      "is_external": false
    },
    "118": {
      "confidence": "high",
      "reasoning": "Two-part check: (1) SG8 with SEQ+Z98 has SG10 child containing CCI with elements[2][0]='ZA6' (Prognosegrundlage — Prognose auf Basis von Profilen; AHB CCI+++ZA6 → elements[2][0]); (2) same parent filter (SG8+SEQ+Z98) has SG10 child with CAV elements[0][0]='E02' (SLP/SEP). Both scoped to SG8+SEQ+Z98 via filtered_parent_child_has_qualifier. Short-circuits on first failure. Note: two separate calls do not strictly guarantee CCI and CAV are in the same SG10 instance, but in practice a Z98 SG8 has one SG10.",
      "description_hash": "8ba18a99",
      "is_external": false
    },
    "709": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "de9869b8",
      "is_external": false
    },
    "386": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "9f7edd8a",
      "is_external": false
    },
    "397": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "aa8eabc6",
      "is_external": false
    },
    "461": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "be90b7c6",
      "is_external": false
    },
    "645": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "b82a55c8",
      "is_external": false
    },
    "238": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "a91864ea",
      "is_external": false
    },
    "967": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "a58c2a1e",
      "is_external": false
    },
    "705": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "7709097c",
      "is_external": false
    },
    "123": {
      "confidence": "medium",
      "reasoning": "Scans segments linearly to collect RFF+MG device IDs from each SG8 group with SEQ+Z20 (OBIS-Daten der Zähleinrichtung/Smartmeter-Gateway). A new SEQ starts a new SG8 context; RFF+MG within that context records the device number. Returns True if any device ID appears in 2+ different SG8 groups (indicating multiple OBIS datasets reference the same device). Linear scan is used because the navigator API does not expose a direct method to retrieve segments within a parent SG8 instance by absolute index.",
      "description_hash": "84604faf",
      "is_external": false
    },
    "191": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "48b5c281",
      "is_external": false
    },
    "52": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "f6a0209b",
      "is_external": false
    },
    "399": {
      "confidence": "medium",
      "reasoning": "Condition is True when an SG8 SEQ+Z78 exists whose Zeitraum-ID (DE1050) matches DE3224 of the current LOC segment (accessed via SG5 group navigator as LOC.C517.DE3224 = elements[1][3]), AND that Z78 SG8 has RFF+Z31 with a DE1154 value that is NOT the pauschal code 9992000000018. This identifies bundle structures that reference a non-pauschal Lokationsbündelstruktur.",
      "description_hash": "3a9c269e",
      "is_external": false
    },
    "674": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "d137147d",
      "is_external": false
    },
    "621": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "6169d177",
      "is_external": false
    },
    "2360": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e1042e0d",
      "is_external": false
    },
    "146": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "9b7d800d",
      "is_external": false
    },
    "86": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "ea45e3d6",
      "is_external": false
    },
    "380": {
      "confidence": "medium",
      "reasoning": "Variant of condition 377 that accepts either 'AUS' or 'AU1' as the CAV value for the Überführungszeitreihentyp. Same SG8→SG10 parent-child navigation, broadened CAV value check.",
      "description_hash": "4bb13075",
      "is_external": false
    },
    "450": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "a7b848ca",
      "is_external": false
    },
    "166": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "fae4710e",
      "is_external": false
    },
    "107": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "8bd07fa4",
      "is_external": false
    },
    "93": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "9c09501f",
      "is_external": false
    },
    "428": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "baf0f622",
      "is_external": true
    },
    "406": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "c51cb98e",
      "is_external": false
    },
    "452": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "0455685f",
      "is_external": false
    },
    "641": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "6a11be4b",
      "is_external": false
    },
    "31": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "c93779d2",
      "is_external": true
    },
    "672": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "75e5e7d6",
      "is_external": false
    },
    "243": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "6b930fa5",
      "is_external": false
    },
    "519": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "7def2de9",
      "is_external": false
    },
    "241": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "cf2a70c6",
      "is_external": true
    },
    "590": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "9a2d665f",
      "is_external": false
    },
    "77": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "2e4bb8df",
      "is_external": false
    },
    "142": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "f74accba",
      "is_external": false
    },
    "939": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "05a09b9a",
      "is_external": false
    },
    "286": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "a95c134f",
      "is_external": false
    },
    "20": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "a5387753",
      "is_external": false
    },
    "21": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "cff72c8d",
      "is_external": false
    },
    "694": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "399f0585",
      "is_external": false
    },
    "296": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "3fcaf736",
      "is_external": false
    },
    "125": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "4e0d2759",
      "is_external": false
    },
    "356": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "35b8c3f1",
      "is_external": false
    },
    "509": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "6e9d756f",
      "is_external": false
    },
    "17": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "f99c24cd",
      "is_external": false
    },
    "215": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "be8103c9",
      "is_external": false
    },
    "47": {
      "confidence": "medium",
      "reasoning": "Iterates all SG8 instances and their SG10 children looking for CCI with elements[0][0]==\"15\" and elements[2][0]==\"Z21\" (Zeitreihentyp), then checks if the same SG10 has a CAV with elements[0][0] in the Summenzeitreihentyp code list. Uses navigator for parent-child group traversal.",
      "description_hash": "7866c184",
      "is_external": false
    },
    "472": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "64d016ee",
      "is_external": false
    },
    "480": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "881e0b1c",
      "is_external": false
    },
    "5": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "a1466d0d",
      "is_external": true
    },
    "622": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "04b6eeeb",
      "is_external": false
    },
    "2307": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "b332d40b",
      "is_external": false
    },
    "346": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "60f2dd9c",
      "is_external": false
    },
    "638": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "92f36b7c",
      "is_external": false
    },
    "522": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "3150e105",
      "is_external": false
    },
    "411": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "842dd489",
      "is_external": false
    },
    "525": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "3915f006",
      "is_external": false
    },
    "704": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "aa0fdda7",
      "is_external": false
    },
    "75": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "ff3e86e3",
      "is_external": true
    },
    "167": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "597e21f8",
      "is_external": false
    },
    "2312": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "efc869e5",
      "is_external": false
    },
    "148": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "1cafb5d2",
      "is_external": false
    },
    "199": {
      "confidence": "medium",
      "reasoning": "Checks whether any SG8 with SEQ+Z01 (Daten der Marktlokation) contains an SG10 child group where CCI elements[2][0]=ZA6 (Prognosegrundlage: Prognose auf Basis von Profilen) and CAV elements[0][0]=E02 (SLP/SEP) appear in the same SG10 instance. The 'identischer Zeitraum-ID' constraint from SEQ DE1050 is structurally satisfied by operating within the same SG8 instance; deeper Zeitraum-ID cross-referencing with other groups is omitted as it would require knowing the external referencing context.",
      "description_hash": "028297ec",
      "is_external": false
    },
    "234": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "d6b93aed",
      "is_external": false
    },
    "25": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "3bebab6e",
      "is_external": false
    },
    "511": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "b3c745fc",
      "is_external": false
    },
    "556": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "757114fc",
      "is_external": false
    },
    "558": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "dea71226",
      "is_external": false
    },
    "611": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "302e02d6",
      "is_external": false
    },
    "955": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "804a715f",
      "is_external": false
    },
    "76": {
      "confidence": "medium",
      "reasoning": "SEQ+Z49 is 'Abgerechnete Daten der Bilanzierungsgebietssummenzeitreihe' — the only SEQ code in the reference that explicitly names a Bilanzierungsgebiet-level Summenzeitreihe. Checking its presence is the most direct mapping of the condition text. A broader interpretation involving CAV codes (Bezeichnung der Summenzeitreihe) is possible but those codes are not fully enumerated in the provided reference.",
      "description_hash": "f1f667db",
      "is_external": false
    },
    "2358": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "8916d19f",
      "is_external": false
    },
    "133": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "088f9d0d",
      "is_external": false
    },
    "360": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "0a350d32",
      "is_external": false
    },
    "372": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "11ffafa8",
      "is_external": false
    },
    "523": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "3eb2f600",
      "is_external": false
    },
    "378": {
      "confidence": "medium",
      "reasoning": "Logical negation of condition 377: True when CCI+15++Z21 CAV+AUS is NOT present in any SG8's SG10 child. Iterates all instances and returns True only if the combination is never found.",
      "description_hash": "69ba1f93",
      "is_external": false
    },
    "517": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "6a3e2482",
      "is_external": false
    },
    "639": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "3ab58f76",
      "is_external": false
    },
    "51": {
      "confidence": "medium",
      "reasoning": "Condition is True when no Z98 SG8 (Informative Daten der Marktlokation) references — via matching Zeitraum-ID in SEQ.C286.DE1050 — a Z78 SG8 (Referenz auf Lokationsbündelstruktur) that carries the pauschal bundle code 9992000000018 in RFF+Z31.DE1154. Requires navigator for cross-SG8 Zeitraum-ID correlation.",
      "description_hash": "c757dd0f",
      "is_external": false
    },
    "193": {
      "confidence": "high",
      "reasoning": "Parent-child SG10 check. Iterates SG8 instances, then each SG10 child. In each SG10, checks CCI elements[2][0]==\"ZB5\" (Spannungsebene der Summenzeitreihe) and CAV elements[0][0]==\"E06\" (Niederspannung) in the same SG10 instance. Matches the documented navigator pattern from examples 9 and 10.",
      "description_hash": "cbf420c3",
      "is_external": false
    },
    "267": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "1b28a132",
      "is_external": false
    },
    "421": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "154526b5",
      "is_external": false
    },
    "162": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "64b11455",
      "is_external": false
    },
    "105": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "bd5b2040",
      "is_external": false
    },
    "922": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "589886f8",
      "is_external": false
    },
    "449": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "ea5c7c92",
      "is_external": false
    },
    "376": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "473db0ab",
      "is_external": false
    },
    "698": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "92acdd76",
      "is_external": false
    },
    "203": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "510fa15f",
      "is_external": false
    },
    "2009": {
      "confidence": "medium",
      "reasoning": "Semantically identical to [2008] — 'Bedingungen' (plural) vs 'Bedingung' (singular) is a grammatical variation. Same logic: collects qualifying SG8 SEQ+Z01 Zeitraum-IDs where condition [89] is fulfilled. Recursive call self.evaluate(89, ctx) operates at message scope.",
      "description_hash": "3c94573f",
      "is_external": false
    },
    "2096": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "22d82c4d",
      "is_external": false
    },
    "528": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "eea84db1",
      "is_external": false
    },
    "348": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "571d58b7",
      "is_external": false
    },
    "129": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "cfd0d61c",
      "is_external": false
    },
    "440": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "4cb1b002",
      "is_external": false
    },
    "576": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "713e5866",
      "is_external": false
    },
    "2356": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "603ae337",
      "is_external": false
    },
    "282": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "08cbd840",
      "is_external": false
    },
    "332": {
      "confidence": "medium",
      "reasoning": "Checks whether any SG8 instance lacks CCI+6++ZA9 (Aggregationsverantwortung ÜNB, elements[0]='6' and elements[2][0]='ZA9') in its SG10 children. With navigator: iterates SG8 instances and their SG10 children. Without navigator: falls back to message-wide CCI+6 with ZA9 check. The Zeitraum-ID cross-reference between this SG8 and the Z01 SG8 cannot be fully verified without direct SG8-level segment access via navigator, so this is an approximation that may produce false positives in multi-SG4-group messages.",
      "description_hash": "342e346b",
      "is_external": false
    },
    "693": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "adadeba1",
      "is_external": false
    },
    "473": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "233249fb",
      "is_external": false
    },
    "322": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "6aac2a48",
      "is_external": false
    },
    "323": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "2960665d",
      "is_external": true
    },
    "11": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "321d0c62",
      "is_external": false
    },
    "2288": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "bd097f40",
      "is_external": false
    },
    "227": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "5a7f4155",
      "is_external": false
    },
    "632": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "057d32b2",
      "is_external": false
    },
    "100": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "b20262f8",
      "is_external": false
    },
    "425": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "e4119094",
      "is_external": true
    },
    "648": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "fc2baba8",
      "is_external": false
    },
    "680": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "842e0813",
      "is_external": false
    },
    "49": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "5fe27cd1",
      "is_external": false
    },
    "481": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "d652608f",
      "is_external": false
    },
    "201": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "3849d657",
      "is_external": false
    },
    "931": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "825c510c",
      "is_external": false
    },
    "387": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "8bc5d69b",
      "is_external": false
    },
    "295": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "86a7a819",
      "is_external": false
    },
    "309": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "b1d71130",
      "is_external": false
    },
    "22": {
      "confidence": "medium",
      "reasoning": "Checks if any SG6 RFF+Z47/Z48/Z49 Zeitraum-ID (DE1156 at elements[0][2]) matches any SG8 SEQ Zeitraum-ID reference (DE1050 at elements[1][0]). Uses groups_share_qualified_value for cross-group correlation across all three qualifying codes.",
      "description_hash": "077d9210",
      "is_external": false
    },
    "484": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "704e92e1",
      "is_external": false
    },
    "306": {
      "confidence": "high",
      "reasoning": "Direct cross-group Zeitraum-ID correlation: collects DE3224 (elements[1][3]) from all LOC+Z22 segments in SG5, then checks if any SEQ+Z58 in SG8 has DE1050 (elements[1][0]) matching one of those IDs. Both element positions are confirmed by the segment structure reference. Clean and reliable implementation.",
      "description_hash": "0752af58",
      "is_external": false
    },
    "365": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e2834888",
      "is_external": false
    },
    "288": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "f566a522",
      "is_external": false
    },
    "99": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "573b03f7",
      "is_external": true
    },
    "298": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "60d68b3c",
      "is_external": false
    },
    "438": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "7a4a5c5b",
      "is_external": false
    },
    "442": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "39d048e4",
      "is_external": false
    },
    "404": {
      "confidence": "medium",
      "reasoning": "Reads NAD+MR MP-ID from elements[1][0], then iterates all SG8 SG10 children looking for CCI with elements[2][0]==ZB3 and CAV with elements[0][0]==Z91 where the MP-ID (elements[0][1]) matches. Returns False if same MP-ID found (condition 'not same' fails), True otherwise. Approximation: cannot filter SG8 instances by SEQ+Z01/Z98 without find_segments_in_group; checks all SG8 SG10 children. This is acceptable since CCI+ZB3 CAV+Z91 patterns in other SG8 types would still represent valid MSB assignments to compare against.",
      "description_hash": "4e297cb2",
      "is_external": false
    },
    "670": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "5cfe286a",
      "is_external": false
    },
    "606": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "3e9d0579",
      "is_external": false
    },
    "457": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "535a615d",
      "is_external": false
    },
    "711": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "6528c7f0",
      "is_external": false
    },
    "2095": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "1ec79467",
      "is_external": false
    },
    "316": {
      "confidence": "high",
      "reasoning": "Checks that in some SG8 instance (Zähleinrichtungsdaten, SEQ+Z03), the Smartmeter-Gateway RFF+Z14 is absent. Uses the any_group_has_qualifier_without helper directly. SEQ+Z03 is the canonical Zähleinrichtungsdaten entry segment qualifier for this absence check.",
      "description_hash": "288539fa",
      "is_external": false
    },
    "432": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "a8b36ddc",
      "is_external": false
    },
    "119": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "4d7701f7",
      "is_external": false
    },
    "147": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e4b87f85",
      "is_external": false
    },
    "265": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "cc8ad4c2",
      "is_external": false
    },
    "414": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "d4edd8da",
      "is_external": false
    },
    "233": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "28c43e5e",
      "is_external": true
    },
    "291": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "abd33b30",
      "is_external": false
    },
    "212": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "b5c09245",
      "is_external": false
    },
    "252": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "87b3eb73",
      "is_external": false
    },
    "254": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "96da7841",
      "is_external": false
    },
    "373": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "c6c20b9b",
      "is_external": false
    },
    "417": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "68564493",
      "is_external": false
    },
    "398": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "8f081ccf",
      "is_external": false
    },
    "455": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "381f8017",
      "is_external": false
    },
    "23": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "ff6dde96",
      "is_external": false
    },
    "2182": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "ca6c0c45",
      "is_external": false
    },
    "951": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "f35fc481",
      "is_external": false
    },
    "646": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "eb5c0efc",
      "is_external": false
    },
    "338": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "826a1e4e",
      "is_external": false
    },
    "507": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "f261bf57",
      "is_external": false
    },
    "136": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "591b9624",
      "is_external": false
    },
    "930": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "30e8c861",
      "is_external": false
    },
    "515": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "441cd927",
      "is_external": false
    },
    "357": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "fc97b9cc",
      "is_external": false
    },
    "349": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "ec881f4a",
      "is_external": false
    },
    "2310": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "34829ade",
      "is_external": false
    },
    "453": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "085490e8",
      "is_external": true
    },
    "466": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "08b1bf71",
      "is_external": false
    },
    "84": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "4b9d9762",
      "is_external": false
    },
    "262": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "c7d98ecc",
      "is_external": false
    },
    "321": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "f7255aef",
      "is_external": false
    },
    "487": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "17dc7f84",
      "is_external": false
    },
    "379": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "48928005",
      "is_external": false
    },
    "420": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "f9f8582b",
      "is_external": false
    },
    "367": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "93d565ab",
      "is_external": false
    },
    "617": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "c88ce9fd",
      "is_external": false
    },
    "689": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "15d2743d",
      "is_external": false
    },
    "170": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "73fdead8",
      "is_external": false
    },
    "677": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "93931b1c",
      "is_external": false
    },
    "329": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e241f75c",
      "is_external": false
    },
    "284": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "07fe648e",
      "is_external": false
    },
    "500": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "90cddaf7",
      "is_external": false
    },
    "273": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "f9a39da7",
      "is_external": false
    },
    "88": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "4b1316dc",
      "is_external": false
    },
    "112": {
      "confidence": "high",
      "reasoning": "Parent-child absence: SG10 is a child group of SG8. Check if any SG8 with SEQ+Z59 has SG10 child with CCI elements[0][0]='11', then negate to get absence semantics. Matches Example 12 pattern exactly — filtered_parent_child_has_qualifier returns True when CCI+11 IS found; negation gives True when it is NOT found.",
      "description_hash": "d8d95aee",
      "is_external": false
    },
    "563": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "a1685051",
      "is_external": false
    },
    "2001": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "16d86734",
      "is_external": false
    },
    "957": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "1f00af18",
      "is_external": false
    },
    "2005": {
      "confidence": "medium",
      "reasoning": "Same logic as 2004 but enforces 'at least once' cardinality (count >= 1) instead of 'exactly once'. Collects Zeitraum-IDs from SG6 RFF+Z49 DE1156 and checks that each has at least one matching SG8 SEQ DE1050 reference. Returns False if any Zeitraum-ID has zero matching SG8 references.",
      "description_hash": "06fcb785",
      "is_external": false
    },
    "131": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "7a7d9937",
      "is_external": false
    },
    "270": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "c7ff22d1",
      "is_external": false
    },
    "342": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "d1018f82",
      "is_external": false
    },
    "478": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e444578a",
      "is_external": false
    },
    "56": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "c0fcc1e0",
      "is_external": false
    },
    "137": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "11a2de30",
      "is_external": false
    },
    "718": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "32112513",
      "is_external": false
    },
    "94": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "587b0fdd",
      "is_external": false
    },
    "156": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e9dac314",
      "is_external": false
    },
    "707": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "ffd143f5",
      "is_external": false
    },
    "946": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "425779e5",
      "is_external": false
    },
    "2311": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "7163c8e0",
      "is_external": false
    },
    "685": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "1eb1fc89",
      "is_external": false
    },
    "568": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "8b778f11",
      "is_external": false
    },
    "503": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "b914fe16",
      "is_external": false
    },
    "87": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "0546dba6",
      "is_external": false
    },
    "914": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "533e37f6",
      "is_external": false
    },
    "83": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "7dc98268",
      "is_external": false
    },
    "491": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "798c2c48",
      "is_external": false
    },
    "2071": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "5bdfb965",
      "is_external": false
    },
    "431": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "bcf7f409",
      "is_external": false
    },
    "285": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "9a41ce6a",
      "is_external": false
    },
    "529": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "275254fe",
      "is_external": false
    },
    "2183": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "56c434b6",
      "is_external": false
    },
    "95": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "acb3de63",
      "is_external": false
    },
    "251": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "eb26b535",
      "is_external": true
    },
    "34": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "f7259e99",
      "is_external": false
    },
    "388": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "bba5df8e",
      "is_external": false
    },
    "2350": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "836ba524",
      "is_external": false
    },
    "943": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "f604ab5f",
      "is_external": false
    },
    "441": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "4282f262",
      "is_external": false
    },
    "665": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "202b3aa2",
      "is_external": false
    },
    "623": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "3c8adf68",
      "is_external": false
    },
    "483": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "1f45f5f3",
      "is_external": false
    },
    "2075": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "7fbe5e0c",
      "is_external": false
    },
    "690": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "acea431d",
      "is_external": false
    },
    "244": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "c80424b7",
      "is_external": false
    },
    "268": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "33eb8697",
      "is_external": false
    },
    "489": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "0b4c57c1",
      "is_external": false
    },
    "15": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "07b13291",
      "is_external": false
    },
    "712": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "29ea05a6",
      "is_external": false
    },
    "713": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "d90891f7",
      "is_external": false
    },
    "7": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "101bffb4",
      "is_external": false
    },
    "78": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "0cee2c1b",
      "is_external": false
    },
    "96": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "811d0056",
      "is_external": false
    },
    "344": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "07df5d16",
      "is_external": false
    },
    "410": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "b9a3d72e",
      "is_external": false
    },
    "164": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "8bb96e4a",
      "is_external": false
    },
    "708": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "a47b601b",
      "is_external": false
    },
    "401": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "dd662fa9",
      "is_external": false
    },
    "710": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "d255e487",
      "is_external": false
    },
    "370": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "232cf419",
      "is_external": false
    },
    "643": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "d4a51acc",
      "is_external": false
    },
    "19": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e1d13481",
      "is_external": false
    },
    "89": {
      "confidence": "medium",
      "reasoning": "Checks whether any SG8 instance contains an SG10 child with CCI at elements[2][0]=ZA6 and CAV at elements[0][0]=E14. The condition text requires the Zeitraum-ID in DE1050 to match 'this SG8', but a per-group evaluation context is not available in the current API — the Zeitraum-ID cross-reference is therefore not enforced and is instead approximated as a message-wide check. The CCI qualifier position (elements[2][0]) is confirmed by the MIG reference for CCI segments in SG10.",
      "description_hash": "587e7160",
      "is_external": false
    },
    "141": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "dd6d4600",
      "is_external": false
    },
    "413": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e3c772b5",
      "is_external": false
    },
    "437": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "28105e2b",
      "is_external": false
    },
    "660": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "aea42c0c",
      "is_external": false
    },
    "192": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "9c65a01f",
      "is_external": false
    },
    "135": {
      "confidence": "medium",
      "reasoning": "Identical time-slice continuity logic as condition 134 but applied to Z47/Z54 (Im System vorhandene Daten/Im System keine Daten vorhanden) SG6 groups. Same structural rule: DTM+Z25 of slice N must equal DTM+Z26 of slice N-1 for all N > 1.",
      "description_hash": "380a8143",
      "is_external": false
    },
    "341": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "966f83cb",
      "is_external": false
    },
    "116": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "2a998c8b",
      "is_external": false
    },
    "18": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "b2b52d1a",
      "is_external": false
    },
    "396": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "c0787dea",
      "is_external": false
    },
    "50": {
      "confidence": "medium",
      "reasoning": "Collects (Zeitraum-ID from SEQ.elements[1][0], Marktlok-ID from sibling RFF+Z18.elements[0][1]) for all SG8 instances with SEQ+Z98 and SEQ+ZE7. Returns True if any Z98 group has no ZE7 group matching on both values. Uses collect_group_values with instance-index correlation via HashMap, assuming each SG8 has at most one SEQ (guaranteed as entry segment) and the zip ordering is stable.",
      "description_hash": "c7bd32e1",
      "is_external": false
    },
    "667": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "d1a9a471",
      "is_external": false
    },
    "213": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "f6780d06",
      "is_external": false
    },
    "307": {
      "confidence": "medium",
      "reasoning": "Collects Zeitraum-IDs from SG5 LOC+Z22 segments (DE3224 = elements[1][3]) and SEQ+Z58 segments (DE1050 = elements[1][0]). Returns True when any SEQ+Z58 has a Zeitraum-ID with no matching LOC+Z22 entry. Message-wide fallback since group-level Zeitraum-ID isolation is not possible without navigator.",
      "description_hash": "6c1558c3",
      "is_external": false
    },
    "178": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "bc0b3659",
      "is_external": false
    },
    "363": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "35b8c3f1",
      "is_external": false
    },
    "619": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "762088d0",
      "is_external": false
    },
    "647": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "830e28dd",
      "is_external": false
    },
    "451": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "2e3701d0",
      "is_external": false
    },
    "2016": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "133e3ecd",
      "is_external": false
    },
    "196": {
      "confidence": "medium",
      "reasoning": "Extended cross-SG8 check vs 175: now requires matching SEQ qualifier code (DE1229), Zeitraum-ID from SEQ DE1050 (elements[1][0]), Objektcode (RFF+Z33 DE1154), AND fortlaufende Nummer (RFF+Z33 DE1156) to all be identical between two distinct SG8 instances. SEQ qualifiers are Z58/ZC9/ZD0 per schema.",
      "description_hash": "eeba92e1",
      "is_external": false
    },
    "375": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "5932ffb2",
      "is_external": false
    },
    "532": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "fb4d8110",
      "is_external": false
    },
    "429": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "fd40616c",
      "is_external": true
    },
    "2007": {
      "confidence": "medium",
      "reasoning": "Semantically identical to [2006] — 'Bedingungen' (plural) vs 'Bedingung' (singular) is a grammatical variation with no functional difference. Same logic: collects qualifying SG8 SEQ+Z01 Zeitraum-IDs where condition [199] is fulfilled. Recursive call self.evaluate(199, ctx) operates at message scope.",
      "description_hash": "05c508a4",
      "is_external": false
    },
    "256": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "709f41c1",
      "is_external": false
    },
    "190": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "267c774c",
      "is_external": false
    },
    "239": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "154ac530",
      "is_external": false
    },
    "456": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "a8056a20",
      "is_external": false
    },
    "39": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "aedf9c25",
      "is_external": true
    },
    "475": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "97e1dd59",
      "is_external": false
    },
    "44": {
      "confidence": "high",
      "reasoning": "'einzutragen' describes where to source the Zeitraum-ID value from (matching SG6 RFF+Z49/Z53 in the request message). This is a data population instruction, not a boolean predicate — it is a Hinweis-type annotation and always applies.",
      "description_hash": "c021f0fb",
      "is_external": false
    },
    "304": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "a2e6ae73",
      "is_external": false
    },
    "502": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "c40c0d51",
      "is_external": false
    },
    "581": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "40184416",
      "is_external": false
    },
    "609": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "25ec70cb",
      "is_external": false
    },
    "68": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "f6942807",
      "is_external": false
    },
    "717": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "bc70f3dc",
      "is_external": true
    },
    "143": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "05c89bfa",
      "is_external": false
    },
    "463": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "f3b6372c",
      "is_external": false
    },
    "526": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "3696f77a",
      "is_external": false
    },
    "687": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e7169d71",
      "is_external": false
    },
    "27": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "fc0cba01",
      "is_external": false
    },
    "195": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "b5f9f81d",
      "is_external": false
    },
    "194": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "7659864b",
      "is_external": false
    },
    "300": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "17aa6503",
      "is_external": false
    },
    "403": {
      "confidence": "medium",
      "reasoning": "Gets NAD+MS MP-ID from SG2 (elements[1][0]), then navigates all SG8→SG10 instances looking for CCI with elements[2][0]='ZB3' (Zugeordnete Marktpartner) and CAV with elements[0][0]='Z91' (Messstellenbetreiber). Compares the CAV+Z91 MP-ID (elements[0][1]) with the sender MP-ID. Returns True when they differ (not the same). Note: SEQ+Z01 filter on the parent SG8 is omitted because `find_segments_in_child_group` only accesses child groups, not the parent SG8 segments; the Z91 MSB identity is message-consistent regardless.",
      "description_hash": "fd9ec353",
      "is_external": false
    },
    "177": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "f1b6f51b",
      "is_external": false
    },
    "255": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "c517a6a3",
      "is_external": false
    },
    "716": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "04f057d5",
      "is_external": false
    },
    "393": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "3879ff21",
      "is_external": false
    },
    "435": {
      "confidence": "high",
      "reasoning": "Has working implementation",
      "description_hash": "f8c0e48e",
      "is_external": true
    },
    "569": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "8f6d581d",
      "is_external": false
    },
    "120": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "f34834d8",
      "is_external": false
    },
    "210": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "cff72c8d",
      "is_external": false
    },
    "640": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "dee26a0f",
      "is_external": false
    },
    "932": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "943b98c4",
      "is_external": false
    },
    "2003": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "753df803",
      "is_external": false
    },
    "333": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "be649d48",
      "is_external": false
    },
    "70": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "d5fd24b8",
      "is_external": false
    },
    "73": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "028a90d6",
      "is_external": false
    },
    "2361": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "e859d72e",
      "is_external": false
    },
    "501": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "8402e617",
      "is_external": false
    },
    "240": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "01868623",
      "is_external": false
    },
    "910": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "063d57bb",
      "is_external": false
    },
    "2012": {
      "confidence": "high",
      "reasoning": "[STUB] No implementation — returns Unknown",
      "description_hash": "eb379e61",
      "is_external": false
    }
  }
}