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
ÿþ//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ ub„vS+T‡eöN0
// ›O ENRIT.rc O(u
//
#define IDC_BUTTON_CHANGE               3
#define IDP_OLE_INIT_FAILED             100
#define IDD_ABOUTBOX                    100
#define IDD_DIALOG_LOGIN                103
#define IDP_SOCKETS_INIT_FAILED         104
#define IDB_WRITESMALL                  110
#define IDB_WRITELARGE                  111
#define IDB_MAIN                        112
#define IDB_BUTTONS                     113
#define IDB_FILELARGE                   114
#define IDB_FILESMALL                   115
#define IDR_MAINFRAME                   128
#define IDD_DLG_RECIPE_LIST             129
#define IDB_BITMAP_DEFECT               130
#define IDR_ENRITTYPE                   130
#define IDD_DLG_RECIPE_NEW              130
#define IDB_PLAY                        133
#define IDB_STOP                        134
#define IDB_STOP_HOT                    135
#define IDB_PLAY_HOT                    136
#define IDB_IMAGE                       137
#define IDD_DLG_PPID_NEW                138
#define IDD_DIALOG_VERSION              139
#define IDB_RADIO_ON                    146
#define IDD_DLG_NOTCH_SETTING           146
#define IDB_PROPICONS                   147
#define IDB_CHECKNO                     151
#define IDB_RADIO_OFF                   152
#define IDI_LED_OFF                     152
#define IDD_DLG_LAMP_CONTROL            152
#define IDB_CHECK32                     153
#define IDI_LED_ON                      153
#define IDB_CHECKNO32                   154
#define IDI_ICON_CHK_ON                 154
#define IDB_RADIO_OFF32                 155
#define IDI_ICON_CHK_OFF                155
#define IDI_ICON_APP                    179
#define IDI_ICON_CANCEL                 180
#define IDI_ICON_CHK_ON2                181
#define IDI_ICON_CHK_OFF_2              182
#define IDI_ICON_LOAD_SM                183
#define IDI_ICON_CK_OK                  184
#define IDI_ICON_DISK_SM                185
#define IDI_ICON_LOAD_BIG               186
#define IDI_ICON_DISK_BIG               188
#define IDI_ICON_PC                     189
#define IDI_ICON_CHANGE                 192
#define IDD_DLG_EXCEPTION               203
#define IDI_ICON_LEFT_RIGHT             206
#define IDI_ICON_UP_DOWN                207
#define IDB_BTN_LOAD                    214
#define IDB_BTN_LOAD_PUSH               215
#define IDB_BTN_SAVE_PUSH               217
#define IDB_BTN_SAVE                    219
#define IDB_SPLASH                      310
#define IDD_DLG_RCUT_MAIN_VIEW          311
#define IDD_DIALOG_LICENSE              312
#define IDD_DLG_INSPECT_INFORMATION     313
#define IDD_DLG_SCANIMAGE_VIEW          314
#define IDD_DLG_RECIPE_VIEW             315
#define IDD_DLG_LIVECAM_VIEW            316
#define IDR_MENU1                       317
#define IDD_DLG_HWSETTING_VIEW          317
#define IDB_LED_ON                      318
#define IDR_ALIGN_POP_UP                319
#define IDB_LED_OFF                     319
#define IDB_BTN_SAVE_NORMAL             321
#define IDB_BTN_LOAD_PUSH1              322
#define IDB_BTN_LOAD1                   323
#define IDB_RADIO_ON32                  324
#define IDB_CHECK                       327
#define IDB_BITMAP_RIGHTARROW           328
#define IDB_BITMAP_RECIPE_LINKARROW     329
#define IDD_DLG_RECIPE_HOLE             331
#define IDB_BITMAP_RIGHTARROW1          332
#define IDB_MENU_BAR                    334
#define IDB_BMP_INFO                    335
#define IDB_BITMAP_WARNING              336
#define IDI_ICON_ADD                    336
#define IDI_ICON_COPY                   337
#define IDI_ICON_DELETE                 338
#define IDI_ICON_EDIT                   339
#define IDD_DLG_MAP_SETTINGS            339
#define IDI_ICON_GEAR_CHK               340
#define IDI_ICON_GEAR_RUN               341
#define IDI_ICON_GEAR_STOP              342
#define IDI_ICON_DOWN                   343
#define IDI_ICON_LEFT                   344
#define IDI_ICON_RIGHT                  345
#define IDI_ICON_UP                     346
#define IDI_ICON_SAVEAS                 347
#define IDI_ICON_VIEW                   348
#define IDI_ICON_VIEW_NEXT              349
#define IDI_ICON_VIEW_PREVIOUS          350
#define IDI_ICON_WARNING                351
#define IDI_ICON_REPLACE48              371
#define IDI_ICON_ARR_DN                 375
#define IDI_ICON_ARR_LEFT               376
#define IDI_ICON_ARR_RIGHT              377
#define IDI_ICON_ARR_UP                 378
#define IDB_LIST_CELL1                  386
#define IDD_DIALOG_USER_DEFECT_AREA     390
#define IDD_DLG_RECIPE_INSPECTSETTING_VIEW 392
#define IDD_DLG_RECIPE_PROFILESETTING_VIEW 393
#define IDD_DLG_RECIPE_CHAMFERSETTING_VIEW 394
#define IDD_DLG_DEFECT_VIEW             395
#define IDD_DLG_SPLINE_SETTING          396
#define IDC_COMBO_BORAD_TYPE            1000
#define IDC_STATIC_LAMP_MAX_VALUE       1001
#define IDC_BUTTON_OK                   1001
#define IDC_BTN_MAIN_INSINFOR           1002
#define IDC_LBA_SERIAL_NO               1002
#define IDC_CHK_USE_COORD_PROFILE       1002
#define IDC_BTN_MAIN_IMAGE_VIEW         1003
#define IDC_LBA_LOCK_STATUS             1003
#define IDC_BRUSH_GRAY                  1003
#define IDC_BTN_MAIN_RECIPE_VIEW        1004
#define IDC_LBA_LOCK_DUE_DATE           1004
#define IDC_BTN_MAIN_HW_VIEW            1005
#define IDC_STATIC_RECIPE_TITLE         1005
#define IDC_EDIT_PLC_DELAY              1005
#define IDC_BTN_MAIN_EXIT               1006
#define IDC_EDIT_LIGHT_TRANS_COUNT      1006
#define IDC_EDIT2                       1006
#define IDC_BTN_MAIN_LIVE_CAM_VIEW      1007
#define IDC_STATIC_GLASSINFO_TITLE      1007
#define IDC_EDIT_LIGHT_REFLECT_COUNT    1007
#define IDC_BTN_CONVERT_CLOSE           1007
#define IDC_BTN_MAIN_DEFECTVIEW         1008
#define IDC_STATIC_MAP_UP               1008
#define IDC_LIGHT_LIST                  1008
#define IDC_BTN_CONVERT_APPLY           1008
#define IDC_STATIC_MAP_DW               1009
#define IDC_EDIT_CAMERA_COUNT           1009
#define IDC_RECIPE_LIST                 1010
#define IDC_GRD_MEASURE_RESULT_B        1010
#define IDC_EDIT_FOLDER_REMOVE_DAY      1010
#define IDC_STATIC_DEFECT_IMAGE         1010
#define IDC_LIST_RECIPE_NAME            1011
#define IDC_STATIC_GLASSID_TITLE        1011
#define IDC_CAMERA_LIST                 1011
#define IDC_SCROLLBAR_V                 1012
#define IDC_PPID_LIST                   1012
#define IDC_GRD_MEASURE_RESULT_C        1012
#define IDC_EDIT_SCAN_COUNT             1012
#define IDC_SCROLLBAR_H                 1013
#define IDC_LIST_PPID_NAME              1013
#define IDC_GRD_MEASURE_RESULT_D        1013
#define IDC_BUT_LIGHTCNT_APPLY          1013
#define IDC_BTN_IMG_INIT                1014
#define IDC_GRD_MEASURE_RESULT_A        1014
#define IDC_BTN_HW_SAVE                 1014
#define IDC_BTN_SAVE1                   1015
#define IDC_BTN_IMG_PROCESS             1015
#define IDC_BTN_MAPSETTINGS_CLOSE       1015
#define IDC_GRD_MEASURE_RESULT_A_INLINE 1015
#define IDC_EDIT_LINE_ID                1015
#define IDC_BTN_SAVE5                   1016
#define IDC_BTN_IMG_LOAD                1016
#define IDC_GRD_MEASURE_RESULT_RCUT_A   1016
#define IDC_BUT_CAMCNT_APPLY            1016
#define IDC_BTN_SAVE2                   1017
#define IDC_BTN_IMG_SAVE                1017
#define IDC_GRD_MEASURE_RESULT_RCUT_C   1017
#define IDC_EDIT_PLC_SIGNAL_RETRY_COUNT 1017
#define IDC_BTN_SAVE3                   1018
#define IDC_BTN_TRIGGER_CH_ON           1018
#define IDC_BTN_SAVE4                   1019
#define IDC_BTN_TRIGGER_CH_OFF          1019
#define IDC_BTN_SAVE6                   1020
#define IDC_BUT_LIST_SELECT             1020
#define IDC_BUT_LICENSE_INFO            1020
#define IDC_BTN_SAVE7                   1021
#define IDC_BUT_LIST_EXIT               1021
#define IDC_BUT_LICENSE_INFO2           1021
#define IDC_BUT_KEY_SET                 1021
#define IDC_BTN_SAVE8                   1022
#define IDC_NEWRECIPE_NAME_TITLE        1022
#define IDC_STATIC_SELECT_IMG           1023
#define IDC_NEWRECIPE_NAME_TITLE2       1023
#define IDC_BUT_LIST_NEWRECIPE          1023
#define IDC_STATIC_IMG_2                1024
#define IDC_EDIT_RECIPENEW_NAME         1024
#define IDC_BUT_LIST_DELRECIPE          1024
#define IDC_STATIC_IMG_3                1025
#define IDC_EDIT_RECIPENEW_COMMENT      1025
#define IDC_BUT_LIST_NEWPPID            1025
#define IDC_STATIC_IMG_4                1026
#define IDC_BUT_LIST_DELPPID            1026
#define IDC_STATIC_HISTORY_TITLE2       1026
#define IDC_STATIC_IMG_6                1027
#define IDC_CHK_MARK_A1                 1027
#define IDC_STATIC_HISTORY_TITLE3       1027
#define IDC_STATIC_IMG_7                1028
#define IDC_CHK_MARK_B1                 1028
#define IDC_GRD_DEFECT_LIST             1028
#define IDD_DLG_COORD_CONVERT           1028
#define IDC_STATIC_IMG_8                1029
#define IDC_CHK_MARK_C1                 1029
#define IDC_CHK_MARK_D1                 1030
#define IDC_CHK_MARK_A2                 1031
#define IDC_SLIDER_1                    1031
#define IDC_CHK_MARK_B2                 1032
#define IDC_CHK_INS_REVERSE             1032
#define IDC_CHK_MARK_C2                 1033
#define IDC_SLIDER_3                    1033
#define IDC_CHK_MARK_D2                 1034
#define IDC_SLIDER_2                    1034
#define IDC_EDIT_TH_LINE                1035
#define IDC_EDIT_MARK_RATE1             1036
#define IDC_SLIDER_4                    1036
#define IDC_EDIT_MARK_RATE2             1037
#define IDC_SLIDER_5                    1037
#define IDC_SLIDER_6                    1038
#define IDC_EDIT_TH_EDGE_LINE           1039
#define IDC_SLIDER_7                    1039
#define IDC_BTN_LAMP_CLOSE              1040
#define IDC_EDIT_MARK_RATE3             1041
#define IDC_SLIDER_8                    1041
#define IDC_EDIT_TH_SIDE_CHIP           1043
#define IDC_CHK_MARK_A3                 1044
#define IDC_BTN_RECIPENEW_OK            1045
#define IDC_EDIT_START_LINE_CHK         1045
#define IDC_BTN_RECIPENEW_CANCEL        1046
#define IDC_CHK_MARK_B3                 1046
#define IDC_SAVE                        1046
#define IDC_CHK_MARK_C3                 1047
#define IDC_EXIT                        1047
#define IDC_BTN_PPIDNEW_OK              1047
#define IDC_CHECK_SIDE_CHIP_AND         1048
#define IDC_HOLE_SETTING_LIST           1048
#define IDC_BTN_PPIDNEW_CANCEL          1048
#define IDC_CHECK_USE_CORNER            1049
#define IDC_ADD_AREA                    1049
#define IDC_USERDEFECT_LIST             1049
#define IDC_BTN_RECIPE_SAVE             1050
#define IDC_CHK_MARK_D3                 1050
#define IDC_DEL_AREA                    1050
#define IDC_EXPAREA_LIST                1050
#define IDC_BTN_SPLINE_OK               1051
#define IDC_SCROLLBAR_V_4               1051
#define IDC_EDIT_TH_SIDE_CRACK          1051
#define IDC_UPDATE                      1051
#define IDC_BTN_SPLINE_CANCEL           1052
#define IDC_SCROLLBAR_H_1               1052
#define IDC_CHECK_MARK_MODIFY           1052
#define IDC_BTN_CIRCLE_UP               1052
#define IDC_SCROLLBAR_V_3               1053
#define IDC_EDIT_TH_SIDE_BROKEN         1053
#define IDC_BTN_CIRCLE_LEFT             1053
#define IDC_BTN_NOTCH_OK                1053
#define IDC_SCROLLBAR_V_2               1054
#define IDC_EDIT_TH_SIDE_CHIPDIFFTHRES  1054
#define IDC_BTN_CIRCLE_RIGHT            1054
#define IDC_BTN_NOTCH_CANCEL            1054
#define IDC_SCROLLBAR_V_1               1055
#define IDC_CHECK_PANEL_REVERSE         1055
#define IDC_BTN_CIRCLE_DN               1055
#define IDC_BUT_NOTCH_POS_DEL           1055
#define IDC_SCROLLBAR_H_2               1056
#define IDC_EDIT_TH_IN_CHIP2            1056
#define IDC_BTN_CIRCLE_WIDTH_PLUS       1056
#define IDC_SCROLLBAR_H_3               1057
#define IDC_BTN_FILTER_LIST1            1057
#define IDC_EDIT_TH_SIDE_CHIP_WHITE     1057
#define IDC_BTN_CIRCLE_WIDTH_MINUS      1057
#define IDC_SCROLLBAR_H_4               1058
#define IDC_BTN_PROFILE_MAKECAD         1058
#define IDC_EDIT_TH_IN_BURR2            1058
#define IDC_BTN_CIRCLE_HEIGHT_MINUS     1058
#define IDC_BTN_LOAD1                   1059
#define IDC_BTN_PROFILE_APPLY           1059
#define IDC_EDIT_TH_SIDE_BURR2          1059
#define IDC_BTN_CIRCLE_HEIGHT_PLUS      1059
#define IDC_BTN_LOAD2                   1060
#define IDC_BTN_PROFILE_TEST_RUN        1060
#define IDC_EDIT_TH_EDGE_LINE2          1060
#define IDC_STATIC_TEMPLATE_IMAGE       1060
#define IDC_BTN_LOAD3                   1061
#define IDC_CHECK_CF_CHIP_AND           1061
#define IDC_EDIT_CONTROL_STEP           1061
#define IDC_BTN_CHAMFER_APPLY           1061
#define IDC_BTN_PROFILE_COORDINATE_CONVERT 1061
#define IDC_BTN_LOAD4                   1062
#define IDC_EDIT_TH_SIDE_RCUT_TOP_GLASS 1062
#define IDC_STATIC_TEMPLATE_DISPLAY     1062
#define IDC_BTN_CHAMFER_DOWN            1062
#define IDC_CHECK_LAMP_ONOFF            1062
#define IDC_BTN_LOAD_ALL                1063
#define IDC_EDIT_SIDE_DX_CHIP           1063
#define IDC_STEP_TITLE                  1063
#define IDC_BTN_CHAMFER_UP              1063
#define IDC_BTN_INIT_DISPLAY            1064
#define IDC_EDIT_SIDE_DY_CHIP           1064
#define IDC_SCROLLBAR_DEFECT_H          1064
#define IDC_EDIT_PASSWD                 1064
#define IDC_SCROLLBAR_V_5               1065
#define IDC_EDIT_SIDE_DX_BURR           1065
#define IDC_INSPECT_PROCESS             1065
#define IDC_STATIC_IMG_LIST             1065
#define IDC_EDIT_NEWPASSWD1             1065
#define IDC_SAVE_ALL                    1066
#define IDC_EDIT_SIDE_DY_BURR           1066
#define IDC_VIEW_MODE                   1066
#define IDC_STATIC_INSINFO_GRP_1        1066
#define IDC_EDIT_NEWPASSWD2             1066
#define IDC_STATIC_IMG_1                1067
#define IDC_EDIT_SIDE_DX_BROKEN         1067
#define IDC_STATIC_INSINFO_GRP_2        1067
#define IDC_STATIC_CAM_INFO1            1068
#define IDC_EDIT_SIDE_DY_BROKEN         1068
#define IDC_BTN_INSINFO_MAPSETTINGS     1068
#define IDC_STATIC_CAM_INFO2            1069
#define IDC_EDIT_CAD_OFFSET_X           1069
#define IDC_BTN_ROI_LEFT                1069
#define IDC_GRD_CF_MAPSETTINGS          1069
#define IDC_STATIC_CAM_INFO3            1070
#define IDC_EDIT_CF_DX_CHIP             1070
#define IDC_BTN_ROI_UP                  1070
#define IDC_GRD_TFT_MAPSETTINGS         1070
#define IDC_STATIC_CAM_INFO4            1071
#define IDC_CHECK_SIDE_BURR_AND         1071
#define IDC_BTN_ROI_RIGHT               1071
#define IDC_BTN_MAPSETTINGS_SAVE        1071
#define IDC_CHECK_SIDE_BROKEN_AND       1072
#define IDC_BTN_ROI_DN                  1072
#define IDC_CHK_USECOLORVISUAL          1072
#define IDC_STATIC_SUBJECT              1072
#define IDC_BTN_START_BATCH             1072
#define IDC_EDIT_CF_DY_CHIP             1073
#define IDC_BTN_ROI_WIDTH_PLUS          1073
#define IDC_BTN_STOP_BATCH              1073
#define IDC_UPDN_WIDTH1                 1074
#define IDC_EDIT_CF_DX_BURR             1074
#define IDC_BTN_ROI_WIDTH_MINUS         1074
#define IDC_BTN_PROC                    1075
#define IDC_EDIT_CF_DY_BURR             1075
#define IDC_BTN_ROI_HEIGHT_MINUS        1075
#define IDC_SLIDER_ZOOM                 1076
#define IDC_CHECK_CF_BURR_AND           1076
#define IDC_BTN_ROI_HEIGHT_PLUS         1076
#define IDC_BTN_IMG_SHORT               1077
#define IDC_EDIT_CRACK_DX               1077
#define IDC_BTN_IMG_LONG                1078
#define IDC_EDIT_CRACK_DY               1078
#define IDC_BTN_IMG_BOTH                1079
#define IDC_CHECK_CRACK_AND             1079
#define IDC_ST_ZOOM                     1080
#define IDC_EDIT_CAD_OFFSET_Y           1080
#define IDC_STATIC_CAM_INFO5            1081
#define IDC_EDIT_TH_SIDE_RCUT_TOP_CHAMFER 1081
#define IDC_STATIC_CAM_INFO6            1082
#define IDC_EDIT_TH_SIDE_RCUT_BOT_GLASS 1082
#define IDC_STATIC_CAM_INFO7            1083
#define IDC_EDIT_TH_SIDE_RCUT_BOT_CHAMFER 1083
#define IDC_STATIC_CAM_INFO8            1084
#define IDC_CHK_USE_AVG_PROFILE_JUDGEMENT 1084
#define IDC_STATIC_IMG_5                1085
#define IDC_EDIT_TH_CONOR               1085
#define IDC_SCROLLBAR_V_6               1086
#define IDC_EDIT_AVG_PROFILE_DIFF       1086
#define IDC_SCROLLBAR_V_7               1087
#define IDC_CHECK_SIDE_CHIP_USE         1087
#define IDC_SCROLLBAR_V_8               1088
#define IDC_CHECK_SIDE_BURR_USE         1088
#define IDC_SCROLLBAR_H_5               1089
#define IDC_CHECK_SIDE_BROKEN_USE       1089
#define IDC_BTN_CAM_LIVE                1089
#define IDC_SCROLLBAR_H_6               1090
#define IDC_SLIDER_ZOOM2                1090
#define IDC_CHK_USE_AVG_CHAMFER_JUDGEMENT 1090
#define IDC_BTN_CAM_SNAP                1090
#define IDC_CHECK_AUTO_SIZE             1091
#define IDC_EDIT_AVG_CHAMFER_DIFF       1091
#define IDC_BTN_STOP                    1091
#define IDC_UPDN_WIDTH3                 1092
#define IDC_CHECK_CF_CHIP_USE           1092
#define IDC_UPDN_WIDTH4                 1093
#define IDC_CHK_USE_ORIGINPT_ALIGNKEY   1093
#define IDC_SCROLLBAR_H_7               1094
#define IDC_EDIT_UP_REF_A               1094
#define IDC_SCROLLBAR_H_8               1095
#define IDC_EDIT_UP_PLUS_TOL_A          1095
#define IDC_BTN_LOAD5                   1096
#define IDC_EDIT_UP_MINUS_TOL_A         1096
#define IDC_BTN_LOAD6                   1097
#define IDC_ST_ZOOM2                    1097
#define IDC_EDIT_UP_REF_A2              1097
#define IDC_BTN_LOAD7                   1098
#define IDC_EDIT_DN_REF_A               1098
#define IDC_BTN_LOAD8                   1099
#define IDC_EDIT_DN_PLUS_TOL_A          1099
#define IDC_UPDN_WIDTH6                 1100
#define IDC_EDIT_DN_MINUS_TOL_A         1100
#define IDC_UPDN_WIDTH7                 1101
#define IDC_EDIT_UP_REF_B               1101
#define IDC_UPDN_WIDTH8                 1102
#define IDC_EDIT_UP_PLUS_TOL_B          1102
#define IDC_EDIT_UP_MINUS_TOL_B         1103
#define IDC_BTN_STOP_BATCH2             1103
#define IDC_EDIT_DN_REF_B               1104
#define IDC_STATIC_PROFILE_SETTING_1    1105
#define IDC_EDIT_DN_PLUS_TOL_B          1105
#define IDC_EDIT_DN_MINUS_TOL_B         1106
#define IDC_STATIC_PROFILE_SETTING_Y    1107
#define IDC_EDIT_UP_REF_C               1107
#define IDC_STATIC_PROFILE_SETTING_PLUS 1108
#define IDC_EDIT_UP_PLUS_TOL_C          1108
#define IDC_STATIC_PROFILE_SETTING_MINUS 1109
#define IDC_EDIT_UP_MINUS_TOL_C         1109
#define IDC_CHECK_PROFILE_SETTING_1     1110
#define IDC_EDIT_DN_REF_C               1110
#define IDC_EDIT_PROFILE_SETTING_Y_1    1111
#define IDC_EDIT_DN_PLUS_TOL_C          1111
#define IDC_EDIT_PROFILE_SETTING_PLUS_1 1112
#define IDC_EDIT_DN_MINUS_TOL_C         1112
#define IDC_EDIT_PROFILE_SETTING_MINUS_1 1113
#define IDC_EDIT_UP_REF_D               1113
#define IDC_STATIC_PROFILE_SETTING_2    1114
#define IDC_EDIT_UP_PLUS_TOL_D          1114
#define IDC_STATIC_CHAMFER_SETTING_1    1114
#define IDC_CHECK_PROFILE_SETTING_2     1115
#define IDC_EDIT_UP_MINUS_TOL_D         1115
#define IDC_STATIC_CHAMFER_SETTING_REF  1115
#define IDC_EDIT_PROFILE_SETTING_Y_2    1116
#define IDC_EDIT_DN_REF_D               1116
#define IDC_STATIC_CHAMFER_SETTING_2    1116
#define IDC_EDIT_PROFILE_SETTING_PLUS_2 1117
#define IDC_EDIT_DN_PLUS_TOL_D          1117
#define IDC_STATIC_CHAMFER_SETTING_PLUS 1117
#define IDC_EDIT_PROFILE_SETTING_MINUS_2 1118
#define IDC_EDIT_DN_MINUS_TOL_D         1118
#define IDC_STATIC_CHAMFER_SETTING_MINUS 1118
#define IDC_STATIC_PROFILE_SETTING_3    1119
#define IDC_CHECK_CF_BURR_USE           1119
#define IDC_CHECK_CHAMFER_SETTING_1     1119
#define IDC_STATIC_PROFILE_SETTING_4    1120
#define IDC_EDIT_LONG_LENGTH            1120
#define IDC_EDIT_CHAMFER_SETTING_REF_1  1120
#define IDC_EDIT_SCAN_SPEED             1120
#define IDC_STATIC_PROFILE_SETTING_5    1121
#define IDC_EDIT_SHORT_LENGTH           1121
#define IDC_EDIT_CHAMFER_SETTING_PLUS_1 1121
#define IDC_EDIT_SCAN_SPEED_RATE        1121
#define IDC_STATIC_PROFILE_SETTING_6    1122
#define IDC_EDIT_CORNER1_X              1122
#define IDC_EDIT_CHAMFER_SETTING_MINUS_1 1122
#define IDC_STATIC_PROFILE_SETTING_7    1123
#define IDC_EDIT_SCAN_TIME              1123
#define IDC_STATIC_CHAMFER_SETTING_3    1123
#define IDC_EDIT_EXPOSURE               1123
#define IDC_STATIC_PROFILE_SETTING_8    1124
#define IDC_EDIT_CORNER1_PLUS_TOL       1124
#define IDC_STATIC_CHAMFER_SETTING_4    1124
#define IDC_EDIT_FRM_RATE_1             1124
#define IDC_STATIC_PROFILE_SETTING_9    1125
#define IDC_EDIT_CORNER1_MINUS_TOL      1125
#define IDC_STATIC_CHAMFER_SETTING_5    1125
#define IDC_EDIT_FRM_RATE_2             1125
#define IDC_STATIC_PROFILE_SETTING_10   1126
#define IDC_EDIT_UP_PLUS_TOL_A2         1126
#define IDC_STATIC_CHAMFER_SETTING_6    1126
#define IDC_EDIT_FRM_RATE_3             1126
#define IDC_STATIC_PROFILE_SETTING_11   1127
#define IDC_CHECK_CRACK_USE             1127
#define IDC_STATIC_CHAMFER_SETTING_7    1127
#define IDC_EDIT_FRM_RATE_4             1127
#define IDC_STATIC_PROFILE_SETTING_12   1128
#define IDC_EDIT_DN_REF_A2              1128
#define IDC_STATIC_CHAMFER_SETTING_8    1128
#define IDC_STATIC_PROFILE_SETTING_13   1129
#define IDC_EDIT_DN_PLUS_TOL_A2         1129
#define IDC_STATIC_CHAMFER_SETTING_9    1129
#define IDC_SPLINE_IMAGE                1130
#define IDC_STATIC_PROFILE_SETTING_14   1130
#define IDC_EDIT_CORNER2_X              1130
#define IDC_STATIC_CHAMFER_SETTING_10   1130
#define IDC_BUTTON_USER_DEFECT_AREA_DRAW 1130
#define IDC_CHECK_USE_SPLINE            1131
#define IDC_STATIC_PROFILE_SETTING_15   1131
#define IDC_EDIT_CORNER2_PLUS_TOL       1131
#define IDC_STATIC_CHAMFER_SETTING_11   1131
#define IDC_BUTTON_USER_DEFECT_AREA_ADD 1131
#define IDC_BUT_SPLINE_LOAD             1132
#define IDC_STATIC_PROFILE_SETTING_16   1132
#define IDC_EDIT_CORNER2_MINUS_TOL      1132
#define IDC_STATIC_CHAMFER_SETTING_12   1132
#define IDC_BUTTON_USER_DEFECT_AREA_MODIFY 1132
#define IDC_BUT_SPLINE_IMAGE_MINUS      1133
#define IDC_STATIC_PROFILE_SETTING_17   1133
#define IDC_EDIT_CORNER3_X              1133
#define IDC_STATIC_CHAMFER_SETTING_13   1133
#define IDC_BUTTON_USER_DEFECT_AREA_DELETE 1133
#define IDC_BUT_SPLINE_IMAGE_1X         1134
#define IDC_STATIC_PROFILE_SETTING_18   1134
#define IDC_EDIT_CORNER3_PLUS_TOL       1134
#define IDC_STATIC_CHAMFER_SETTING_14   1134
#define IDC_BUTTO_USER_DEFECT_AREA_SAVE 1134
#define IDC_BUT_SPLINE_IMAGE_PLUS       1135
#define IDC_STATIC_PROFILE_SETTING_19   1135
#define IDC_EDIT_CORNER3_MINUS_TOL      1135
#define IDC_STATIC_CHAMFER_SETTING_15   1135
#define IDC_SPLINE_TITLE_1              1136
#define IDC_STATIC_PROFILE_SETTING_20   1136
#define IDC_EDIT_CORNER4_X              1136
#define IDC_STATIC_CHAMFER_SETTING_16   1136
#define IDC_BUT_SPLINE_FINDLINE         1137
#define IDC_STATIC_PROFILE_SETTING_21   1137
#define IDC_EDIT_CORNER4_PLUS_TOL       1137
#define IDC_STATIC_CHAMFER_SETTING_17   1137
#define IDC_CHECK_USE_SPLINE2           1138
#define IDC_STATIC_PROFILE_SETTING_22   1138
#define IDC_EDIT_CORNER4_MINUS_TOL      1138
#define IDC_STATIC_CHAMFER_SETTING_18   1138
#define IDC_BUT_SPLINE_ORGIMAGE         1139
#define IDC_STATIC_PROFILE_SETTING_23   1139
#define IDC_EDIT_CORNER1_Y              1139
#define IDC_STATIC_CHAMFER_SETTING_19   1139
#define IDC_BUT_SPLINE_READ_MASTER      1140
#define IDC_CHECK_PROFILE_SETTING_3     1140
#define IDC_EDIT_CORNER2_Y              1140
#define IDC_STATIC_CHAMFER_SETTING_20   1140
#define IDC_STATIC_5                    1140
#define IDC_BUT_SPLINE_SELECTLINE       1141
#define IDC_CHECK_PROFILE_SETTING_4     1141
#define IDC_EDIT_UP_REF_B2              1141
#define IDC_STATIC_CHAMFER_SETTING_21   1141
#define IDC_BUT_NOTCH_POS_ADD           1141
#define IDC_STATIC_6                    1141
#define IDC_BUT_SPLINE_FINALFIND        1142
#define IDC_CHECK_PROFILE_SETTING_5     1142
#define IDC_EDIT_CORNER3_Y              1142
#define IDC_CHECK_CHAMFER_SETTING_2     1142
#define IDC_EDIT_NOTCH_INS_POINT_AVE_COUNT 1142
#define IDC_BUT_SPLINE_SAVE_RCUT_MASTER 1143
#define IDC_CHECK_PROFILE_SETTING_6     1143
#define IDC_EDIT_CORNER4_Y              1143
#define IDC_CHECK_CHAMFER_SETTING_3     1143
#define IDC_CHK_NOTCH_INS_POINT_JUDGE_DIMENSION_USE 1143
#define IDC_STATIC_8                    1143
#define IDC_CHECK_USE_SPLINECHIP        1144
#define IDC_CHECK_PROFILE_SETTING_7     1144
#define IDC_EDIT_UP_PLUS_TOL_B2         1144
#define IDC_CHECK_CHAMFER_SETTING_4     1144
#define IDC_CHK_NOTCH_INS_POINT_JUDGE_CHAMFER_USE 1144
#define IDC_STATIC_9                    1144
#define IDC_EDIT_SPLINE_JUDGE_DIST      1145
#define IDC_CHECK_PROFILE_SETTING_8     1145
#define IDC_EDIT_DN_REF_B2              1145
#define IDC_CHECK_CHAMFER_SETTING_5     1145
#define IDC_BUT_SPLINE_INSPECTION       1146
#define IDC_CHECK_PROFILE_SETTING_9     1146
#define IDC_EDIT_DN_PLUS_TOL_B2         1146
#define IDC_CHECK_CHAMFER_SETTING_6     1146
#define IDC_BUT_SPLINE_READ_MASTER_C    1147
#define IDC_CHECK_PROFILE_SETTING_10    1147
#define IDC_EDIT_UP_REF_C2              1147
#define IDC_CHECK_CHAMFER_SETTING_7     1147
#define IDC_EDIT_LAMP_VALUE_1           1147
#define IDC_SPLINE_LIST                 1148
#define IDC_CHECK_PROFILE_SETTING_11    1148
#define IDC_EDIT_UP_PLUS_TOL_C2         1148
#define IDC_CHECK_CHAMFER_SETTING_8     1148
#define IDC_EDIT_LAMP_VALUE_2           1148
#define IDC_BUT_ADD_SPLINE_CHIP         1149
#define IDC_CHECK_PROFILE_SETTING_12    1149
#define IDC_EDIT_DN_REF_C2              1149
#define IDC_CHECK_CHAMFER_SETTING_9     1149
#define IDC_EDIT_LAMP_VALUE_3           1149
#define IDC_BUT_DEL_SPLINE_CHIP         1150
#define IDC_CHECK_PROFILE_SETTING_13    1150
#define IDC_EDIT_DN_PLUS_TOL_C2         1150
#define IDC_CHECK_CHAMFER_SETTING_10    1150
#define IDC_EDIT_LAMP_VALUE_4           1150
#define IDC_EDIT_SPLINE_LINE_THRES      1151
#define IDC_CHECK_PROFILE_SETTING_14    1151
#define IDC_EDIT_UP_REF_D2              1151
#define IDC_CHECK_CHAMFER_SETTING_11    1151
#define IDC_EDIT_LAMP_VALUE_5           1151
#define IDC_EDIT_SPLINE_CHIPSIZE_X      1152
#define IDC_CHECK_PROFILE_SETTING_15    1152
#define IDC_EDIT_UP_PLUS_TOL_D2         1152
#define IDC_CHECK_CHAMFER_SETTING_12    1152
#define IDC_EDIT_LAMP_VALUE_6           1152
#define IDC_EDIT_SPLINE_YPOS            1153
#define IDC_EDIT_SPLINE_START_CORNER_R_SIZE_Y 1153
#define IDC_CHECK_PROFILE_SETTING_16    1153
#define IDC_EDIT_DN_REF_D2              1153
#define IDC_CHECK_CHAMFER_SETTING_13    1153
#define IDC_EDIT_LAMP_VALUE_7           1153
#define IDC_EDIT_SPLINE_CHIPINSAREA     1154
#define IDC_CHECK_PROFILE_SETTING_17    1154
#define IDC_EDIT_DN_PLUS_TOL_D2         1154
#define IDC_EDIT_CHAMFER_SETTING_REF_2  1154
#define IDC_EDIT_LAMP_VALUE_8           1154
#define IDC_EDIT_SPLINE_CHIPTHRES_TOP   1155
#define IDC_CHECK_PROFILE_SETTING_18    1155
#define IDC_EDIT_UP_REF_A3              1155
#define IDC_EDIT_CHAMFER_SETTING_REF_3  1155
#define IDC_EDIT_SPLINE_CHIP_START_THETA 1156
#define IDC_CHECK_PROFILE_SETTING_19    1156
#define IDC_EDIT_UP_PLUS_TOL_A3         1156
#define IDC_EDIT_CHAMFER_SETTING_REF_4  1156
#define IDC_STATIC_IMG_RCUT_LEFT        1156
#define IDC_EDIT_SPLINE_CHIP_END_THETA  1157
#define IDC_CHECK_PROFILE_SETTING_20    1157
#define IDC_EDIT_UP_REF_B3              1157
#define IDC_EDIT_CHAMFER_SETTING_REF_5  1157
#define IDC_STATIC_LABEL_3              1157
#define IDC_STATIC_IMG_RCUT_RIGHT       1157
#define IDC_EDIT_SPLINE_CHIP_DIST_THETA 1158
#define IDC_CHECK_PROFILE_SETTING_21    1158
#define IDC_EDIT_UP_PLUS_TOL_B3         1158
#define IDC_EDIT_CHAMFER_SETTING_REF_6  1158
#define IDC_STATIC_LABEL_4              1158
#define IDC_STATIC_IMG_CCUT_LEFT        1158
#define IDC_EDIT_SPLINE_END_CORNER_R_SIZE_Y 1159
#define IDC_CHECK_PROFILE_SETTING_22    1159
#define IDC_EDIT_UP_REF_C3              1159
#define IDC_EDIT_CHAMFER_SETTING_REF_7  1159
#define IDC_STATIC_LABEL_5              1159
#define IDC_STATIC_IMG_CCUT_RIGHT       1159
#define IDC_EDIT_USER_DEFECT_AREA_WIDTH 1159
#define IDC_EDIT_START_CHAMFER_SIZE     1160
#define IDC_CHECK_PROFILE_SETTING_23    1160
#define IDC_BTN_MARK_RIGHT              1160
#define IDC_EDIT_CHAMFER_SETTING_REF_8  1160
#define IDC_STATIC_LABEL_6              1160
#define IDC_EDIT_USER_DEFECT_AREA_HEIGHT 1160
#define IDC_EDIT_END_CHAMFER_SIZE       1161
#define IDC_BTN_MARK_UP                 1161
#define IDC_EDIT_CHAMFER_SETTING_REF_9  1161
#define IDC_STATIC_LABEL_7              1161
#define IDC_EDIT_USER_DEFECT_AREA_THRESHOLD 1161
#define IDC_EDIT_SPLINE_START_CORNER_R_RADIUS 1162
#define IDC_STATIC_PROFILE_SETTING_Y2   1162
#define IDC_BTN_MARK_DN                 1162
#define IDC_EDIT_CHAMFER_SETTING_REF_10 1162
#define IDC_STATIC_LABEL_8              1162
#define IDC_EDIT_USER_DEFECT_AREA_DILATION 1162
#define IDC_EDIT_SPLINE_END_CORNER_R_RADIUS 1163
#define IDC_STATIC_PROFILE_SETTING_PLUS2 1163
#define IDC_BTN_MARK2_DEL               1163
#define IDC_EDIT_CHAMFER_SETTING_REF_11 1163
#define IDC_STATIC_LABEL_9              1163
#define IDC_STATIC_PROFILE_SETTING_MINUS2 1164
#define IDC_BTN_MARK3_DEL               1164
#define IDC_EDIT_CHAMFER_SETTING_REF_12 1164
#define IDC_STATIC_LABEL_10             1164
#define IDC_EDIT_PROFILE_SETTING_Y_3    1165
#define IDC_EDIT_UP_PLUS_TOL_C3         1165
#define IDC_EDIT_CHAMFER_SETTING_REF_13 1165
#define IDC_EDIT_PROFILE_SETTING_Y_4    1166
#define IDC_EDIT_UP_REF_D3              1166
#define IDC_EDIT_CHAMFER_SETTING_PLUS_2 1166
#define IDC_EDIT_PROFILE_SETTING_Y_5    1167
#define IDC_EDIT_UP_PLUS_TOL_D3         1167
#define IDC_EDIT_CHAMFER_SETTING_PLUS_3 1167
#define IDC_EDIT_PROFILE_SETTING_Y_6    1168
#define IDC_EDIT_ORIGINPT_OFFSET_X      1168
#define IDC_EDIT_CHAMFER_SETTING_PLUS_4 1168
#define IDC_EDIT_PROFILE_SETTING_Y_7    1169
#define IDC_EDIT_ORIGINPT_OFFSET_Y      1169
#define IDC_EDIT_CHAMFER_SETTING_PLUS_5 1169
#define IDC_STATIC_APP_SIDE             1169
#define IDC_EDIT_PROFILE_SETTING_Y_8    1170
#define IDC_EDIT_ORIGINPT_OFFSET_X2     1170
#define IDC_EDIT_CHAMFER_SETTING_PLUS_6 1170
#define IDC_STATIC_CAM1                 1170
#define IDC_EDIT_PROFILE_SETTING_Y_9    1171
#define IDC_EDIT_ORIGINPT_OFFSET_Y2     1171
#define IDC_EDIT_CHAMFER_SETTING_PLUS_7 1171
#define IDC_STATIC_CAM2                 1171
#define IDC_EDIT_PROFILE_SETTING_Y_10   1172
#define IDC_EDIT_PROFILE_NG_COUNT       1172
#define IDC_EDIT_CHAMFER_SETTING_PLUS_8 1172
#define IDC_STATIC_APP_SIDE2            1172
#define IDC_CHECK_USE_FREERUN_INSPECT   1172
#define IDC_EDIT_PROFILE_SETTING_Y_11   1173
#define IDC_EDIT_PROFILE_NG_COUNT_MIN_DIFF 1173
#define IDC_EDIT_CHAMFER_SETTING_PLUS_9 1173
#define IDC_STATIC_CAM3                 1173
#define IDC_EDIT_FREERUN_MOTOR_SPEED    1173
#define IDC_EDIT_PROFILE_SETTING_Y_12   1174
#define IDC_EDIT_CHAMFER_SETTING_PLUS_10 1174
#define IDC_STATIC_APP_SIDE3            1174
#define IDC_EDIT_FREERUN_TARGET_RESOLUTION 1174
#define IDC_EDIT_PROFILE_SETTING_Y_13   1175
#define IDC_EDIT_CHAMFER_SETTING_PLUS_11 1175
#define IDC_STATIC_CAM4                 1175
#define IDC_EDIT_FREERUN_PERIOD         1175
#define IDC_EDIT_PROFILE_SETTING_Y_14   1176
#define IDC_EDIT_CHAMFER_SETTING_PLUS_12 1176
#define IDC_STATIC_APP_SIDE4            1176
#define IDC_EDIT_PREERUN_EXPOSURETIME   1176
#define IDC_EDIT_PROFILE_SETTING_Y_15   1177
#define IDC_EDIT_CHAMFER_SETTING_PLUS_13 1177
#define IDC_SCROLLBAR1                  1177
#define IDC_BUTTON_CAL_FREERUN          1177
#define IDC_EDIT_SPLINE_CHIPSIZE_Y      1178
#define IDC_EDIT_PROFILE_SETTING_Y_16   1178
#define IDC_EDIT_CHAMFER_SETTING_MINUS_2 1178
#define IDC_SCROLLBAR2                  1178
#define IDC_EDIT_TRIGGER_COM_PORT       1178
#define IDC_CHECK_SPLINE_CHIP_AND       1179
#define IDC_EDIT_PROFILE_SETTING_Y_17   1179
#define IDC_EDIT_CHAMFER_SETTING_MINUS_3 1179
#define IDC_SCROLLBAR3                  1179
#define IDC_CHECK_USE_TRIGGER_BOARD     1179
#define IDC_EDIT_PROFILE_SETTING_Y_18   1180
#define IDC_EDIT_CHAMFER_SETTING_MINUS_4 1180
#define IDC_SCROLLBAR4                  1180
#define IDC_EDIT_FULL_IMAGE_RATIO       1180
#define IDC_EDIT_PROFILE_SETTING_Y_19   1181
#define IDC_EDIT_CHAMFER_SETTING_MINUS_5 1181
#define IDC_RDO_SIGNAL1                 1181
#define IDC_EDIT_PROFILE_SETTING_Y_20   1182
#define IDC_EDIT_CHAMFER_SETTING_MINUS_6 1182
#define IDC_RDO_SIGNAL2                 1182
#define IDC_EDIT_PROFILE_SETTING_Y_21   1183
#define IDC_BTN_MARK1_UPDATE            1183
#define IDC_EDIT_CHAMFER_SETTING_MINUS_7 1183
#define IDC_EDIT_PROFILE_SETTING_PLUS_3 1184
#define IDC_BTN_MARK2_UPDATE            1184
#define IDC_EDIT_CHAMFER_SETTING_MINUS_8 1184
#define IDC_EDIT_PROFILE_SETTING_PLUS_4 1185
#define IDC_BTN_MARK3_UPDATE            1185
#define IDC_EDIT_CHAMFER_SETTING_MINUS_9 1185
#define IDC_EDIT_PROFILE_SETTING_PLUS_5 1186
#define IDC_STATIC_MARK1                1186
#define IDC_EDIT_CHAMFER_SETTING_MINUS_10 1186
#define IDC_EDIT_PROFILE_SETTING_PLUS_6 1187
#define IDC_STATIC_MARK2                1187
#define IDC_EDIT_CHAMFER_SETTING_MINUS_11 1187
#define IDC_EDIT_PROFILE_SETTING_PLUS_7 1188
#define IDC_STATIC_MARK3                1188
#define IDC_EDIT_CHAMFER_SETTING_MINUS_12 1188
#define IDC_EDIT_PROFILE_SETTING_PLUS_8 1189
#define IDC_EDIT_CHAMFER_SETTING_MINUS_13 1189
#define IDC_EDIT_PROFILE_SETTING_PLUS_9 1190
#define IDC_BTN_MARK_LEFT               1190
#define IDC_CHECK_CHAMFER_SETTING_14    1190
#define IDC_EDIT_PROFILE_SETTING_PLUS_10 1191
#define IDC_CHECK_CHAMFER_SETTING_15    1191
#define IDC_EDIT_PROFILE_SETTING_PLUS_11 1192
#define IDC_CHECK_CHAMFER_SETTING_16    1192
#define IDC_EDIT_PROFILE_SETTING_PLUS_12 1193
#define IDC_CHECK_CHAMFER_SETTING_17    1193
#define IDC_EDIT_PROFILE_SETTING_PLUS_13 1194
#define IDC_BTN_MARK1_DEL               1194
#define IDC_CHECK_CHAMFER_SETTING_18    1194
#define IDC_EDIT_PROFILE_SETTING_PLUS_14 1195
#define IDC_CHECK_CHAMFER_SETTING_19    1195
#define IDC_EDIT_PROFILE_SETTING_MINUS_3 1196
#define IDC_CHECK_CHAMFER_SETTING_20    1196
#define IDC_EDIT_PROFILE_SETTING_MINUS_4 1197
#define IDC_CHECK_CHAMFER_SETTING_21    1197
#define IDC_EDIT_PROFILE_SETTING_MINUS_5 1198
#define IDC_EDIT_CHAMFER_SETTING_REF_14 1198
#define IDC_EDIT_PROFILE_SETTING_MINUS_6 1199
#define IDC_EDIT_CHAMFER_SETTING_REF_15 1199
#define IDC_EDIT_PROFILE_SETTING_MINUS_7 1200
#define IDC_EDIT_CHAMFER_SETTING_REF_16 1200
#define IDC_EDIT_PROFILE_SETTING_MINUS_8 1201
#define IDC_EDIT_CHAMFER_SETTING_REF_17 1201
#define IDC_NEWPPID_NAME_TITLE          1201
#define IDC_EDIT_PROFILE_SETTING_MINUS_9 1202
#define IDC_EDIT_CHAMFER_SETTING_REF_18 1202
#define IDC_EDIT_PPIDNEW_NAME           1202
#define IDC_EDIT_PROFILE_SETTING_MINUS_10 1203
#define IDC_BUTTON_LINK                 1203
#define IDC_EDIT_CHAMFER_SETTING_REF_19 1203
#define IDC_EDIT_PROFILE_SETTING_MINUS_11 1204
#define IDC_EDIT_CHAMFER_SETTING_REF_20 1204
#define IDC_EDIT_PROFILE_SETTING_MINUS_12 1205
#define IDC_EDIT_CHAMFER_SETTING_REF_21 1205
#define IDC_EDIT_PROFILE_SETTING_MINUS_13 1206
#define IDC_EDIT_CHAMFER_SETTING_PLUS_14 1206
#define IDC_EDIT_PROFILE_SETTING_MINUS_14 1207
#define IDC_EDIT_CHAMFER_SETTING_PLUS_15 1207
#define IDC_CHECK_USE_SP_COR_USE        1208
#define IDC_EDIT_PROFILE_SETTING_PLUS_15 1208
#define IDC_EDIT_CHAMFER_SETTING_PLUS_16 1208
#define IDC_EDIT_PROFILE_SETTING_PLUS_16 1209
#define IDC_EDIT_CHAMFER_SETTING_PLUS_17 1209
#define IDC_EDIT_PROFILE_SETTING_PLUS_17 1210
#define IDC_EDIT_CHAMFER_SETTING_PLUS_18 1210
#define IDC_EDIT_PX                     1210
#define IDC_EDIT_PROFILE_SETTING_PLUS_18 1211
#define IDC_EDIT_CHAMFER_SETTING_PLUS_19 1211
#define IDC_EDIT_PY                     1211
#define IDC_EDIT_PROFILE_SETTING_PLUS_19 1212
#define IDC_EDIT_CHAMFER_SETTING_PLUS_20 1212
#define IDC_EDIT_ROI_W                  1212
#define IDC_EDIT_PROFILE_SETTING_PLUS_20 1213
#define IDC_EDIT_CHAMFER_SETTING_PLUS_21 1213
#define IDC_EDIT_ROI_H                  1213
#define IDC_EDIT_SPLINE_COR_THRES       1214
#define IDC_EDIT_PROFILE_SETTING_PLUS_21 1214
#define IDC_EDIT_CHAMFER_SETTING_MINUS_14 1214
#define IDC_BTN_ADD                     1214
#define IDC_EDIT_PROFILE_SETTING_MINUS_15 1215
#define IDC_EDIT_CHAMFER_SETTING_MINUS_15 1215
#define IDC_BTN_MODIFY                  1215
#define IDC_EDIT_SPLINE_COR_RANGE       1216
#define IDC_EDIT_PROFILE_SETTING_MINUS_16 1216
#define IDC_EDIT_CHAMFER_SETTING_MINUS_16 1216
#define IDC_BTN_DELETE                  1216
#define IDC_EDIT_PROFILE_SETTING_MINUS_17 1217
#define IDC_EDIT_CHAMFER_SETTING_MINUS_17 1217
#define IDC_BTN_DELETE_ALL              1217
#define IDC_EDIT_PROFILE_SETTING_MINUS_18 1218
#define IDC_EDIT_CHAMFER_SETTING_MINUS_18 1218
#define IDC_EDIT_PROFILE_SETTING_MINUS_19 1219
#define IDC_EDIT_CHAMFER_SETTING_MINUS_19 1219
#define IDC_EDIT_ERR_DX                 1219
#define IDC_EDIT_PROFILE_SETTING_MINUS_20 1220
#define IDC_EDIT_CHAMFER_SETTING_MINUS_20 1220
#define IDC_EDIT_ERR_DY                 1220
#define IDC_EDIT_PROFILE_SETTING_MINUS_21 1221
#define IDC_EDIT_CHAMFER_SETTING_MINUS_21 1221
#define IDC_CHK_TFT_CHIPPING            1221
#define IDC_EDIT_PROFILE_SETTING_Y_22   1222
#define IDC_STATIC_CHAMFER_SETTING_22   1222
#define IDC_CHK_TFT_BUR                 1222
#define IDC_EDIT_PROFILE_SETTING_PLUS_22 1223
#define IDC_CHECK_CHAMFER_SETTING_22    1223
#define IDC_CHK_TFT_BROKEN              1223
#define IDC_EDIT_PROFILE_SETTING_MINUS_22 1224
#define IDC_STATIC_CHAMFER_SETTING_REF2 1224
#define IDC_EDIT_PROFILE_SETTING_Y_23   1225
#define IDC_STATIC_CHAMFER_SETTING_PLUS2 1225
#define IDC_CF_CHIPPING                 1225
#define IDC_EDIT_PROFILE_SETTING_PLUS_23 1226
#define IDC_STATIC_CHAMFER_SETTING_MINUS2 1226
#define IDC_CF_BUR                      1226
#define IDC_EDIT_PROFILE_SETTING_MINUS_23 1227
#define IDC_EDIT_CHAMFER_SETTING_REF_22 1227
#define IDC_CHK_CRACK                   1227
#define IDC_STATIC_PROFILE_SETTING_24   1228
#define IDC_EDIT_CHAMFER_SETTING_PLUS_22 1228
#define IDC_CHK_DETECT_LIMITED_AREA     1228
#define IDC_STATIC_PROFILE_SETTING_25   1229
#define IDC_EDIT_CHAMFER_SETTING_MINUS_22 1229
#define IDC_UPDN_WIDTH2                 1230
#define IDC_STATIC_PROFILE_SETTING_26   1230
#define IDC_STATIC_CHAMFER_SETTING_23   1230
#define IDC_UPDN_WIDTH5                 1231
#define IDC_STATIC_PROFILE_SETTING_27   1231
#define IDC_STATIC_CHAMFER_SETTING_24   1231
#define IDC_STATIC_PROFILE_SETTING_28   1232
#define IDC_STATIC_CHAMFER_SETTING_25   1232
#define IDC_STATIC_PROFILE_SETTING_29   1233
#define IDC_STATIC_GND1                 1233
#define IDC_STATIC_CHAMFER_SETTING_26   1233
#define IDC_STATIC_PROFILE_SETTING_30   1234
#define IDC_STATIC33                    1234
#define IDC_STATIC_CHAMFER_SETTING_27   1234
#define IDC_STATIC_PROFILE_SETTING_31   1235
#define IDC_STATIC_GND2                 1235
#define IDC_STATIC_CHAMFER_SETTING_28   1235
#define IDC_STATIC_PROFILE_SETTING_32   1236
#define IDC_STATIC_GND3                 1236
#define IDC_STATIC_CHAMFER_SETTING_29   1236
#define IDC_STATIC_PROFILE_SETTING_33   1237
#define IDC_STATIC_C1                   1237
#define IDC_STATIC_CHAMFER_SETTING_30   1237
#define IDC_STATIC_PROFILE_SETTING_34   1238
#define IDC_STATIC_GND4                 1238
#define IDC_STATIC_CHAMFER_SETTING_31   1238
#define IDC_STATIC_PROFILE_SETTING_35   1239
#define IDC_STATIC_C2                   1239
#define IDC_STATIC_CHAMFER_SETTING_32   1239
#define IDC_STATIC_RECIPE_BASE_BAR      1240
#define IDC_STATIC_PROFILE_SETTING_36   1240
#define IDC_STATIC_C3                   1240
#define IDC_STATIC_CHAMFER_SETTING_33   1240
#define IDC_STATIC_RECIPE_NAME          1241
#define IDC_STATIC_PROFILE_SETTING_37   1241
#define IDC_STATIC36                    1241
#define IDC_STATIC_CHAMFER_SETTING_34   1241
#define IDC_STATIC_PROFILE_SETTING_38   1242
#define IDC_EDIT_SKIP_LINE              1242
#define IDC_STATIC_CHAMFER_SETTING_35   1242
#define IDC_STATIC_RECIPE_COMMENT       1243
#define IDC_STATIC_PROFILE_SETTING_39   1243
#define IDC_STATIC_GND5                 1243
#define IDC_STATIC_CHAMFER_SETTING_36   1243
#define IDC_STATIC_PROFILE_SETTING_40   1244
#define IDC_STATIC_C4                   1244
#define IDC_STATIC_CHAMFER_SETTING_37   1244
#define IDC_STATIC_PROFILE_SETTING_41   1245
#define IDC_STATIC_C5                   1245
#define IDC_STATIC_CHAMFER_SETTING_38   1245
#define IDC_STATIC_PROFILE_SETTING_42   1246
#define IDC_STATIC_C6                   1246
#define IDC_STATIC_CHAMFER_SETTING_39   1246
#define IDC_CHECK_PROFILE_SETTING_24    1247
#define IDC_STATIC_C44                  1247
#define IDC_STATIC_CHAMFER_SETTING_40   1247
#define IDC_CHECK_PROFILE_SETTING_25    1248
#define IDC_STATIC_C7                   1248
#define IDC_STATIC_CHAMFER_SETTING_41   1248
#define IDC_CHECK_PROFILE_SETTING_26    1249
#define IDC_STATIC_C8                   1249
#define IDC_STATIC_CHAMFER_SETTING_42   1249
#define IDC_CHECK_PROFILE_SETTING_27    1250
#define IDC_STATIC_C9                   1250
#define IDC_CHECK_CHAMFER_SETTING_23    1250
#define IDC_CHECK_PROFILE_SETTING_28    1251
#define IDC_STATIC_C10                  1251
#define IDC_CHECK_CHAMFER_SETTING_24    1251
#define IDC_CHECK_PROFILE_SETTING_29    1252
#define IDC_STATIC_C11                  1252
#define IDC_CHECK_CHAMFER_SETTING_25    1252
#define IDC_BTN_CLOSE                   1252
#define IDC_CHECK_PROFILE_SETTING_30    1253
#define IDC_STATIC_C12                  1253
#define IDC_CHECK_CHAMFER_SETTING_26    1253
#define IDC_CHECK_PROFILE_SETTING_31    1254
#define IDC_STATIC_C13                  1254
#define IDC_CHECK_CHAMFER_SETTING_27    1254
#define IDC_CHECK_PROFILE_SETTING_32    1255
#define IDC_STATIC_C25                  1255
#define IDC_CHECK_CHAMFER_SETTING_28    1255
#define IDC_CHECK_PROFILE_SETTING_33    1256
#define IDC_STATIC_C45                  1256
#define IDC_CHECK_CHAMFER_SETTING_29    1256
#define IDC_STATIC_INSINFO_EQPNO        1256
#define IDC_CHECK_PROFILE_SETTING_34    1257
#define IDC_STATIC_C46                  1257
#define IDC_CHECK_CHAMFER_SETTING_30    1257
#define IDC_STATIC_INSINFO_UNITNO       1257
#define IDC_CHECK_PROFILE_SETTING_35    1258
#define IDC_STATIC_C26                  1258
#define IDC_CHECK_CHAMFER_SETTING_31    1258
#define IDC_EDIT_PROFILE_SETTING_Y_24   1259
#define IDC_STATIC_C27                  1259
#define IDC_CHECK_CHAMFER_SETTING_32    1259
#define IDC_EDIT_PROFILE_SETTING_Y_25   1260
#define IDC_STATIC_C28                  1260
#define IDC_CHECK_CHAMFER_SETTING_33    1260
#define IDC_EDIT_PROFILE_SETTING_Y_26   1261
#define IDC_STATIC_C29                  1261
#define IDC_CHECK_CHAMFER_SETTING_34    1261
#define IDC_EDIT_PROFILE_SETTING_Y_27   1262
#define IDC_STATIC_C47                  1262
#define IDC_CHECK_CHAMFER_SETTING_35    1262
#define IDC_STATIC_INSINFO_ROUGHPANLAYER 1262
#define IDC_STATIC_102                  1263
#define IDC_EDIT_PROFILE_SETTING_Y_28   1263
#define IDC_STATIC_C48                  1263
#define IDC_CHECK_CHAMFER_SETTING_36    1263
#define IDC_STATIC_INSINFO_ROUGHPADCOUNT 1263
#define IDC_EDIT_PROFILE_SETTING_Y_29   1264
#define IDC_STATIC_101                  1264
#define IDC_CHECK_CHAMFER_SETTING_37    1264
#define IDC_STATIC_INSINFO_ROUGHNPADLAYER 1264
#define IDC_EDIT_PROFILE_SETTING_Y_30   1265
#define IDC_STATIC_103                  1265
#define IDC_CHECK_CHAMFER_SETTING_38    1265
#define IDC_STATIC_INSINFO_ROUGHNPADCOUNT 1265
#define IDC_CBO_SPLINE_TYPE             1266
#define IDC_EDIT_PROFILE_SETTING_Y_31   1266
#define IDC_STATIC_C34                  1266
#define IDC_CHECK_CHAMFER_SETTING_39    1266
#define IDC_EDIT_PROFILE_SETTING_Y_32   1267
#define IDC_STATIC_C35                  1267
#define IDC_CHECK_CHAMFER_SETTING_40    1267
#define IDC_NOTCH_IMAGE                 1267
#define IDC_EDIT_PROFILE_SETTING_Y_33   1268
#define IDC_STATIC_C49                  1268
#define IDC_CHECK_CHAMFER_SETTING_41    1268
#define IDC_CHECK_USE_NOTCH_CHIP_INS    1268
#define IDC_STATIC_C36                  1268
#define IDC_EDIT_PROFILE_SETTING_Y_34   1269
#define IDC_STATIC_107                  1269
#define IDC_CHECK_CHAMFER_SETTING_42    1269
#define IDC_BUT_NOTCH_LOAD              1269
#define IDC_STATIC_C37                  1269
#define IDC_EDIT_PROFILE_SETTING_Y_35   1270
#define IDC_STATIC_108                  1270
#define IDC_EDIT_CHAMFER_SETTING_REF_23 1270
#define IDC_NOTCH_TITLE_1               1270
#define IDC_STATIC_INSINFO_ROUGHPANLAYER_2 1270
#define IDC_EDIT_PROFILE_SETTING_PLUS_24 1271
#define IDC_STATIC_C50                  1271
#define IDC_EDIT_CHAMFER_SETTING_REF_24 1271
#define IDC_STATIC_INSINFO_ROUGHPADCOUNT_2 1271
#define IDC_EDIT_PROFILE_SETTING_PLUS_25 1272
#define IDC_STATIC_C51                  1272
#define IDC_EDIT_CHAMFER_SETTING_REF_25 1272
#define IDC_BUT_NOTCH_SELECTLINE        1272
#define IDC_STATIC_INSINFO_ROUGHNPADLAYER_2 1272
#define IDC_EDIT_PROFILE_SETTING_PLUS_26 1273
#define IDC_EDIT_CHAMFER_SETTING_REF_26 1273
#define IDC_BUT_NOTCH_FINALFIND         1273
#define IDC_STATIC_INSINFO_ROUGHNPADCOUNT_2 1273
#define IDC_EDIT_PROFILE_SETTING_PLUS_27 1274
#define IDC_EDIT_CHAMFER_SETTING_REF_27 1274
#define IDC_BUT_NOTCH_SAVE_MASTER       1274
#define IDC_STATIC_C30                  1274
#define IDC_EDIT_PROFILE_SETTING_PLUS_28 1275
#define IDC_EDIT_CHAMFER_SETTING_REF_28 1275
#define IDC_CHECK_USE_NOTCH_SIZE_INS    1275
#define IDC_STATIC_INSINFO_ISGRIND      1275
#define IDC_EDIT_PROFILE_SETTING_PLUS_29 1276
#define IDC_STATIC_TOL_C1               1276
#define IDC_EDIT_CHAMFER_SETTING_REF_29 1276
#define IDC_NOTCH_TITLE_2               1276
#define IDC_STATIC_C52                  1276
#define IDC_EDIT_PROFILE_SETTING_PLUS_30 1277
#define IDC_STATIC_TOL_C2               1277
#define IDC_EDIT_CHAMFER_SETTING_REF_30 1277
#define IDC_CHECK_USE_NOTCH_TOPSP_CHIP  1277
#define IDC_STATIC_INSINFO_STAGENO      1277
#define IDC_EDIT_PROFILE_SETTING_PLUS_31 1278
#define IDC_EDIT_CHAMFER_SETTING_REF_31 1278
#define IDC_CHECK_USE_NOTCH_BOTSP_CHIP  1278
#define IDC_EDIT_PROFILE_SETTING_PLUS_32 1279
#define IDC_EDIT_CHAMFER_SETTING_REF_32 1279
#define IDC_NOTCH_TITLE_3               1279
#define IDC_EDIT_PROFILE_SETTING_PLUS_33 1280
#define IDC_EDIT_CHAMFER_SETTING_REF_33 1280
#define IDC_EDIT_NOTCH_CHIP_DIFF        1280
#define IDC_EDIT_PROFILE_SETTING_PLUS_34 1281
#define IDC_STATIC34                    1281
#define IDC_EDIT_CHAMFER_SETTING_REF_34 1281
#define IDC_EDIT_NOTCH_SIZE_DIFF        1281
#define IDC_EDIT_PROFILE_SETTING_PLUS_35 1282
#define IDC_STATIC35                    1282
#define IDC_EDIT_CHAMFER_SETTING_REF_35 1282
#define IDC_EDIT_NOTCH_DET_THRES        1282
#define IDC_EDIT_PROFILE_SETTING_MINUS_24 1283
#define IDC_STATIC37                    1283
#define IDC_EDIT_CHAMFER_SETTING_REF_36 1283
#define IDC_EDIT_NOTCH_SIZE_THRES       1283
#define IDC_EDIT_PROFILE_SETTING_MINUS_25 1284
#define IDC_EDIT_CHAMFER_SETTING_REF_37 1284
#define IDC_BUT_NOTCH_MARK_LOAD         1284
#define IDC_EDIT_PROFILE_SETTING_MINUS_26 1285
#define IDC_EDIT_CHAMFER_SETTING_REF_38 1285
#define IDC_EDIT_NOTCH_CHIP_THRES       1285
#define IDC_EDIT_PROFILE_SETTING_MINUS_27 1286
#define IDC_EDIT_CHAMFER_SETTING_REF_39 1286
#define IDC_EDIT_NOTCH_VSTART           1286
#define IDC_EDIT_PROFILE_SETTING_MINUS_28 1287
#define IDC_EDIT_CHAMFER_SETTING_REF_40 1287
#define IDC_EDIT_NOTCH_VSIZE            1287
#define IDC_EDIT_PROFILE_SETTING_MINUS_29 1288
#define IDC_EDIT_CHAMFER_SETTING_REF_41 1288
#define IDC_EDIT_NOTCH_MARK_XPOS_TOP    1288
#define IDC_EDIT_PROFILE_SETTING_MINUS_30 1289
#define IDC_EDIT_CHAMFER_SETTING_REF_42 1289
#define IDC_EDIT_NOTCH_MARK_XSIZE_TOP   1289
#define IDC_EDIT_PROFILE_SETTING_MINUS_31 1290
#define IDC_EDIT_CHAMFER_SETTING_PLUS_23 1290
#define IDC_EDIT_NOTCH_BASE_THICK       1290
#define IDC_EDIT_PROFILE_SETTING_MINUS_32 1291
#define IDC_EDIT_CHAMFER_SETTING_PLUS_24 1291
#define IDC_EDIT_NOTCH_THICK_DIFF       1291
#define IDC_EDIT_PROFILE_SETTING_MINUS_33 1292
#define IDC_EDIT_CHAMFER_SETTING_PLUS_25 1292
#define IDC_BUT_NOTCH_MARK_SAVE_MASTER  1292
#define IDC_EDIT_PROFILE_SETTING_MINUS_34 1293
#define IDC_EDIT_CHAMFER_SETTING_PLUS_26 1293
#define IDC_NOTCH_MASTER_IMAGE_VIEW     1293
#define IDC_EDIT_PROFILE_SETTING_MINUS_35 1294
#define IDC_EDIT_CHAMFER_SETTING_PLUS_27 1294
#define IDC_EDIT_NOTCH_MARK_YPOS_TOP    1294
#define IDC_CHECK_PROFILE_SETTING_36    1295
#define IDC_EDIT_CHAMFER_SETTING_PLUS_28 1295
#define IDC_EDIT_NOTCH_MARK_YSIZE_TOP   1295
#define IDC_CHECK_PROFILE_SETTING_37    1296
#define IDC_EDIT_CHAMFER_SETTING_PLUS_29 1296
#define IDC_EDIT_NOTCH_MARK_XPOS_BOT    1296
#define IDC_CHECK_PROFILE_SETTING_38    1297
#define IDC_EDIT_CHAMFER_SETTING_PLUS_30 1297
#define IDC_EDIT_NOTCH_MARK_XSIZE_BOT   1297
#define IDC_CHECK_PROFILE_SETTING_39    1298
#define IDC_EDIT_CHAMFER_SETTING_PLUS_31 1298
#define IDC_EDIT_NOTCH_MARK_YPOS_BOT    1298
#define IDC_CHECK_PROFILE_SETTING_40    1299
#define IDC_EDIT_CHAMFER_SETTING_PLUS_32 1299
#define IDC_EDIT_NOTCH_MARK_YSIZE_BOT   1299
#define IDC_CHECK_PROFILE_SETTING_41    1300
#define IDC_EDIT_CHAMFER_SETTING_PLUS_33 1300
#define IDC_EDIT_NOTCH_ALIGN2GLASS      1300
#define IDC_CHECK_PROFILE_SETTING_42    1301
#define IDC_EDIT_CHAMFER_SETTING_PLUS_34 1301
#define IDC_EDIT_NOTCH_SKIPSIZE         1301
#define IDC_EDIT_PROFILE_SETTING_Y_36   1302
#define IDC_EDIT_CHAMFER_SETTING_PLUS_35 1302
#define IDC_EDIT_NOTCH_TOPSP_INSSIZE    1302
#define IDC_EDIT_PROFILE_SETTING_Y_37   1303
#define IDC_EDIT_CHAMFER_SETTING_MINUS_23 1303
#define IDC_EDIT_NOTCH_BOTSP_INSSIZE    1303
#define IDC_EDIT_PROFILE_SETTING_Y_38   1304
#define IDC_EDIT_CHAMFER_SETTING_MINUS_24 1304
#define IDC_EDIT_NOTCH_BLANK2EDGERATIO  1304
#define IDC_EDIT_PROFILE_SETTING_Y_39   1305
#define IDC_EDIT_CHAMFER_SETTING_MINUS_25 1305
#define IDC_EDIT_PROFILE_SETTING_Y_40   1306
#define IDC_EDIT_CHAMFER_SETTING_MINUS_26 1306
#define IDC_EDIT_PROFILE_SETTING_Y_41   1307
#define IDC_EDIT_CHAMFER_SETTING_MINUS_27 1307
#define IDC_NOTCH_LIST                  1307
#define IDC_EDIT_PROFILE_SETTING_Y_42   1308
#define IDC_EDIT_CHAMFER_SETTING_MINUS_28 1308
#define IDC_EDIT_PROFILE_SETTING_PLUS_36 1309
#define IDC_EDIT_CHAMFER_SETTING_MINUS_29 1309
#define IDC_BUT_NOTCH_POS_MOD           1309
#define IDC_EDIT_PROFILE_SETTING_PLUS_37 1310
#define IDC_EDIT_CHAMFER_SETTING_MINUS_30 1310
#define IDC_EDIT_PROFILE_SETTING_PLUS_38 1311
#define IDC_EDIT_CHAMFER_SETTING_MINUS_31 1311
#define IDC_EDIT_PROFILE_SETTING_PLUS_39 1312
#define IDC_EDIT_CHAMFER_SETTING_MINUS_32 1312
#define IDC_EDIT_PROFILE_SETTING_PLUS_40 1313
#define IDC_EDIT_CHAMFER_SETTING_MINUS_33 1313
#define IDC_EDIT_PROFILE_SETTING_PLUS_41 1314
#define IDC_EDIT_CHAMFER_SETTING_MINUS_34 1314
#define IDC_EDIT_PROFILE_SETTING_PLUS_42 1315
#define IDC_EDIT_CHAMFER_SETTING_MINUS_35 1315
#define IDC_EDIT_PROFILE_SETTING_MINUS_36 1316
#define IDC_EDIT_CHAMFER_SETTING_PLUS_36 1316
#define IDC_EDIT_PROFILE_SETTING_MINUS_37 1317
#define IDC_EDIT_CHAMFER_SETTING_PLUS_37 1317
#define IDC_EDIT_PROFILE_SETTING_MINUS_38 1318
#define IDC_EDIT_CHAMFER_SETTING_PLUS_38 1318
#define IDC_EDIT_PROFILE_SETTING_MINUS_39 1319
#define IDC_EDIT_CHAMFER_SETTING_PLUS_39 1319
#define IDC_EDIT_PROFILE_SETTING_MINUS_40 1320
#define IDC_EDIT_CHAMFER_SETTING_PLUS_40 1320
#define IDC_EDIT_PROFILE_SETTING_MINUS_41 1321
#define IDC_EDIT_CHAMFER_SETTING_PLUS_41 1321
#define IDC_EDIT_SPLINE_COR_CHIP_SIZE   1322
#define IDC_EDIT_PROFILE_SETTING_MINUS_42 1322
#define IDC_EDIT_CHAMFER_SETTING_PLUS_42 1322
#define IDC_STATIC_PROFILE_SETTING_43   1323
#define IDC_EDIT_CHAMFER_SETTING_MINUS_36 1323
#define IDC_CHECK_PROFILE_SETTING_43    1324
#define IDC_EDIT_CHAMFER_SETTING_MINUS_37 1324
#define IDC_STATIC_C16                  1325
#define IDC_EDIT_CHAMFER_SETTING_MINUS_38 1325
#define IDC_STATIC_PROFILE_SETTING_Y3   1326
#define IDC_EDIT_CHAMFER_SETTING_MINUS_39 1326
#define IDC_STATIC_PROFILE_SETTING_PLUS3 1327
#define IDC_EDIT_CHAMFER_SETTING_MINUS_40 1327
#define IDC_STATIC_PROFILE_SETTING_MINUS3 1328
#define IDC_EDIT_CHAMFER_SETTING_MINUS_41 1328
#define IDC_EDIT_PROFILE_SETTING_Y_43   1329
#define IDC_EDIT_CHAMFER_SETTING_MINUS_42 1329
#define IDC_VERSION_COMPANYNAME         1329
#define IDC_EDIT_PROFILE_SETTING_PLUS_43 1330
#define IDC_STATIC_CHAMFER_SETTING_43   1330
#define IDC_EDIT_PROFILE_SETTING_MINUS_43 1331
#define IDC_CHECK_CHAMFER_SETTING_43    1331
#define IDC_VERSION_FILEDESCRIPTION     1331
#define IDC_STATIC_PROFILE_SETTING_44   1332
#define IDC_STATIC_CHAMFER_SETTING_REF3 1332
#define IDC_VERSION_FILEVERSION         1332
#define IDC_STATIC_PROFILE_SETTING_45   1333
#define IDC_STATIC_CHAMFER_SETTING_PLUS3 1333
#define IDC_VERSION_PRODUCTVERSION      1333
#define IDC_STATIC_PROFILE_SETTING_46   1334
#define IDC_STATIC_CHAMFER_SETTING_MINUS3 1334
#define IDC_VERSION_INTERNALNAME        1334
#define IDC_STATIC_PROFILE_SETTING_47   1335
#define IDC_STATIC_CHAMFER_SETTING_44   1335
#define IDC_VERSION_LEGALCOPYRIGHT      1335
#define IDC_STATIC_PROFILE_SETTING_48   1336
#define IDC_STATIC_CHAMFER_SETTING_45   1336
#define IDC_VERSION_ORIGINALFILENAME    1336
#define IDC_STATIC_PROFILE_SETTING_49   1337
#define IDC_STATIC_CHAMFER_SETTING_46   1337
#define IDC_STATIC_PROFILE_SETTING_50   1338
#define IDC_STATIC_CHAMFER_SETTING_47   1338
#define IDC_VERSION_PRODUCTNAME         1338
#define IDC_STATIC_PROFILE_SETTING_51   1339
#define IDC_STATIC_CHAMFER_SETTING_48   1339
#define IDC_VERSION_UPDATE              1339
#define IDC_STATIC_PROFILE_SETTING_52   1340
#define IDC_STATIC_CHAMFER_SETTING_49   1340
#define IDC_STATIC_PROFILE_SETTING_53   1341
#define IDC_STATIC_CHAMFER_SETTING_50   1341
#define IDC_STATIC_PROFILE_SETTING_54   1342
#define IDC_STATIC_CHAMFER_SETTING_51   1342
#define IDC_STATIC_PROFILE_SETTING_55   1343
#define IDC_STATIC_CHAMFER_SETTING_52   1343
#define IDC_STATIC_PROFILE_SETTING_56   1344
#define IDC_STATIC_CHAMFER_SETTING_53   1344
#define IDC_STATIC_PROFILE_SETTING_57   1345
#define IDC_STATIC_CHAMFER_SETTING_54   1345
#define IDC_STATIC_PROFILE_SETTING_58   1346
#define IDC_STATIC_CHAMFER_SETTING_55   1346
#define IDC_STATIC_PROFILE_SETTING_59   1347
#define IDC_STATIC_CHAMFER_SETTING_56   1347
#define IDC_CHECK_PROFILE_SETTING_44    1348
#define IDC_STATIC_CHAMFER_SETTING_57   1348
#define IDC_CHECK_PROFILE_SETTING_45    1349
#define IDC_STATIC_CHAMFER_SETTING_58   1349
#define IDC_CHECK_PROFILE_SETTING_46    1350
#define IDC_STATIC_CHAMFER_SETTING_59   1350
#define IDC_CHECK_PROFILE_SETTING_47    1351
#define IDC_EDIT_CHAMFER_SETTING_REF_43 1351
#define IDC_CHECK_PROFILE_SETTING_48    1352
#define IDC_EDIT_CHAMFER_SETTING_PLUS_43 1352
#define IDC_CHECK_PROFILE_SETTING_49    1353
#define IDC_EDIT_CHAMFER_SETTING_MINUS_43 1353
#define IDC_CHECK_PROFILE_SETTING_50    1354
#define IDC_CHECK_CHAMFER_SETTING_44    1354
#define IDC_CHECK_PROFILE_SETTING_51    1355
#define IDC_CHECK_CHAMFER_SETTING_45    1355
#define IDC_CHECK_PROFILE_SETTING_52    1356
#define IDC_CHECK_CHAMFER_SETTING_46    1356
#define IDC_CHECK_PROFILE_SETTING_53    1357
#define IDC_CHECK_CHAMFER_SETTING_47    1357
#define IDC_CHECK_PROFILE_SETTING_54    1358
#define IDC_CHECK_CHAMFER_SETTING_48    1358
#define IDC_CHECK_PROFILE_SETTING_55    1359
#define IDC_CHECK_CHAMFER_SETTING_49    1359
#define IDC_CHECK_PROFILE_SETTING_56    1360
#define IDC_CHECK_CHAMFER_SETTING_50    1360
#define IDC_EDIT_PROFILE_SETTING_Y_44   1361
#define IDC_CHECK_CHAMFER_SETTING_51    1361
#define IDC_EDIT_PROFILE_SETTING_Y_45   1362
#define IDC_CHECK_CHAMFER_SETTING_52    1362
#define IDC_EDIT_PROFILE_SETTING_Y_46   1363
#define IDC_CHECK_CHAMFER_SETTING_53    1363
#define IDC_EDIT_PROFILE_SETTING_Y_47   1364
#define IDC_CHECK_CHAMFER_SETTING_54    1364
#define IDC_EDIT_PROFILE_SETTING_Y_48   1365
#define IDC_CHECK_CHAMFER_SETTING_55    1365
#define IDC_EDIT_PROFILE_SETTING_Y_49   1366
#define IDC_EDIT_CHAMFER_SETTING_REF_44 1366
#define IDC_EDIT_PROFILE_SETTING_Y_50   1367
#define IDC_EDIT_CHAMFER_SETTING_REF_45 1367
#define IDC_EDIT_PROFILE_SETTING_Y_51   1368
#define IDC_EDIT_CHAMFER_SETTING_REF_46 1368
#define IDC_EDIT_PROFILE_SETTING_Y_52   1369
#define IDC_EDIT_CHAMFER_SETTING_REF_47 1369
#define IDC_EDIT_PROFILE_SETTING_Y_53   1370
#define IDC_EDIT_CHAMFER_SETTING_REF_48 1370
#define IDC_EDIT_PROFILE_SETTING_Y_54   1371
#define IDC_EDIT_CHAMFER_SETTING_REF_49 1371
#define IDC_EDIT_PROFILE_SETTING_Y_55   1372
#define IDC_EDIT_CHAMFER_SETTING_REF_50 1372
#define IDC_EDIT_PROFILE_SETTING_Y_56   1373
#define IDC_EDIT_CHAMFER_SETTING_REF_51 1373
#define IDC_EDIT_PROFILE_SETTING_PLUS_44 1374
#define IDC_EDIT_CHAMFER_SETTING_REF_52 1374
#define IDC_EDIT_PROFILE_SETTING_PLUS_45 1375
#define IDC_EDIT_CHAMFER_SETTING_REF_53 1375
#define IDC_EDIT_PROFILE_SETTING_PLUS_46 1376
#define IDC_EDIT_CHAMFER_SETTING_REF_54 1376
#define IDC_EDIT_PROFILE_SETTING_PLUS_47 1377
#define IDC_EDIT_CHAMFER_SETTING_REF_55 1377
#define IDC_EDIT_PROFILE_SETTING_PLUS_48 1378
#define IDC_EDIT_CHAMFER_SETTING_PLUS_44 1378
#define IDC_EDIT_PROFILE_SETTING_PLUS_49 1379
#define IDC_EDIT_CHAMFER_SETTING_PLUS_45 1379
#define IDC_EDIT_PROFILE_SETTING_PLUS_50 1380
#define IDC_EDIT_CHAMFER_SETTING_PLUS_46 1380
#define IDC_EDIT_PROFILE_SETTING_PLUS_51 1381
#define IDC_EDIT_CHAMFER_SETTING_PLUS_47 1381
#define IDC_EDIT_PROFILE_SETTING_PLUS_52 1382
#define IDC_EDIT_CHAMFER_SETTING_PLUS_48 1382
#define IDC_EDIT_PROFILE_SETTING_PLUS_53 1383
#define IDC_EDIT_CHAMFER_SETTING_PLUS_49 1383
#define IDC_EDIT_PROFILE_SETTING_PLUS_54 1384
#define IDC_EDIT_CHAMFER_SETTING_PLUS_50 1384
#define IDC_EDIT_PROFILE_SETTING_PLUS_55 1385
#define IDC_EDIT_CHAMFER_SETTING_PLUS_51 1385
#define IDC_EDIT_PROFILE_SETTING_PLUS_56 1386
#define IDC_EDIT_CHAMFER_SETTING_PLUS_52 1386
#define IDC_EDIT_PROFILE_SETTING_MINUS_44 1387
#define IDC_EDIT_CHAMFER_SETTING_PLUS_53 1387
#define IDC_EDIT_PROFILE_SETTING_MINUS_45 1388
#define IDC_EDIT_CHAMFER_SETTING_PLUS_54 1388
#define IDC_EDIT_PROFILE_SETTING_MINUS_46 1389
#define IDC_EDIT_CHAMFER_SETTING_PLUS_55 1389
#define IDC_EDIT_PROFILE_SETTING_MINUS_47 1390
#define IDC_EDIT_CHAMFER_SETTING_MINUS_44 1390
#define IDC_EDIT_PROFILE_SETTING_MINUS_48 1391
#define IDC_EDIT_CHAMFER_SETTING_MINUS_45 1391
#define IDC_EDIT_PROFILE_SETTING_MINUS_49 1392
#define IDC_EDIT_CHAMFER_SETTING_MINUS_46 1392
#define IDC_EDIT_PROFILE_SETTING_MINUS_50 1393
#define IDC_EDIT_CHAMFER_SETTING_MINUS_47 1393
#define IDC_EDIT_PROFILE_SETTING_MINUS_51 1394
#define IDC_EDIT_CHAMFER_SETTING_MINUS_48 1394
#define IDC_EDIT_PROFILE_SETTING_MINUS_52 1395
#define IDC_EDIT_CHAMFER_SETTING_MINUS_49 1395
#define IDC_EDIT_PROFILE_SETTING_MINUS_53 1396
#define IDC_EDIT_CHAMFER_SETTING_MINUS_50 1396
#define IDC_EDIT_PROFILE_SETTING_MINUS_54 1397
#define IDC_EDIT_CHAMFER_SETTING_MINUS_51 1397
#define IDC_EDIT_PROFILE_SETTING_MINUS_55 1398
#define IDC_EDIT_CHAMFER_SETTING_MINUS_52 1398
#define IDC_EDIT_PROFILE_SETTING_MINUS_56 1399
#define IDC_EDIT_CHAMFER_SETTING_MINUS_53 1399
#define IDC_CHECK_PROFILE_SETTING_57    1400
#define IDC_EDIT_CHAMFER_SETTING_MINUS_54 1400
#define IDC_CHECK_PROFILE_SETTING_58    1401
#define IDC_EDIT_CHAMFER_SETTING_MINUS_55 1401
#define IDC_CHECK_PROFILE_SETTING_59    1402
#define IDC_CHECK_CHAMFER_SETTING_56    1402
#define IDC_EDIT_PROFILE_SETTING_Y_57   1403
#define IDC_CHECK_CHAMFER_SETTING_57    1403
#define IDC_EDIT_PROFILE_SETTING_Y_58   1404
#define IDC_STATIC_NOTCH_TH2            1404
#define IDC_CHECK_CHAMFER_SETTING_58    1404
#define IDC_EDIT_PROFILE_SETTING_Y_59   1405
#define IDC_CHECK_CHAMFER_SETTING_59    1405
#define IDC_EDIT_PROFILE_SETTING_PLUS_57 1406
#define IDC_EDIT_CHAMFER_SETTING_REF_56 1406
#define IDC_EDIT_PROFILE_SETTING_PLUS_58 1407
#define IDC_EDIT_CHAMFER_SETTING_REF_57 1407
#define IDC_EDIT_PROFILE_SETTING_PLUS_59 1408
#define IDC_EDIT_CHAMFER_SETTING_REF_58 1408
#define IDC_EDIT_PROFILE_SETTING_MINUS_57 1409
#define IDC_EDIT_CHAMFER_SETTING_REF_59 1409
#define IDC_EDIT_PROFILE_SETTING_MINUS_58 1410
#define IDC_EDIT_CHAMFER_SETTING_PLUS_56 1410
#define IDC_EDIT_PROFILE_SETTING_MINUS_59 1411
#define IDC_EDIT_CHAMFER_SETTING_PLUS_57 1411
#define IDC_STATIC_PROFILE_SETTING_60   1412
#define IDC_EDIT_CHAMFER_SETTING_PLUS_58 1412
#define IDC_CHECK_PROFILE_SETTING_60    1413
#define IDC_EDIT_CHAMFER_SETTING_PLUS_59 1413
#define IDC_STATIC_C17                  1414
#define IDC_EDIT_CHAMFER_SETTING_MINUS_56 1414
#define IDC_STATIC_C18                  1415
#define IDC_EDIT_CHAMFER_SETTING_MINUS_57 1415
#define IDC_BUTTON_OPEN_USER_DEFECT_VIEW 1416
#define IDC_STATIC_PROFILE_SETTING_R    1416
#define IDC_EDIT_CHAMFER_SETTING_MINUS_58 1416
#define IDC_STATIC_C19                  1417
#define IDC_BUTTON_RCUT_SETTING         1417
#define IDC_EDIT_CHAMFER_SETTING_MINUS_59 1417
#define IDC_STATIC_PROFILE_SETTING_PLUS4 1418
#define IDC_BUTTON_NOTCH_SETTING        1418
#define IDC_STATIC_CHAMFER_SETTING_60   1418
#define IDC_BUTTON_RECIPE_LIST          1419
#define IDC_STATIC_PROFILE_SETTING_MINUS4 1419
#define IDC_CHECK_CHAMFER_SETTING_60    1419
#define IDC_STATIC_C20                  1420
#define IDC_BUTTON_HOLE_SETTING         1420
#define IDC_STATIC_CHAMFER_SETTING_REF4 1420
#define IDC_BUTTON_LIGHT_CONTROL        1421
#define IDC_EDIT_PROFILE_SETTING_PLUS_60 1421
#define IDC_STATIC_CHAMFER_SETTING_PLUS4 1421
#define IDC_EDIT_PROFILE_SETTING_MINUS_60 1422
#define IDC_STATIC_CHAMFER_SETTING_MINUS4 1422
#define IDC_BUTTON_LANG_ENGLISH         1422
#define IDC_STATIC_PROFILE_SETTING_61   1423
#define IDC_EDIT_CHAMFER_SETTING_REF_60 1423
#define IDC_BUTTON_LANG_KOREAN          1423
#define IDC_STATIC_PROFILE_SETTING_62   1424
#define IDC_EDIT_CHAMFER_SETTING_PLUS_60 1424
#define IDC_BUTTON_LANG_KOREAN2         1424
#define IDC_BUTTON_LANG_CHINESE         1424
#define IDC_STATIC_PROFILE_SETTING_63   1425
#define IDC_EDIT_CHAMFER_SETTING_MINUS_60 1425
#define IDC_BUTTON_VISION_SET           1425
#define IDC_STATIC_PROFILE_SETTING_64   1426
#define IDC_STATIC_CHAMFER_SETTING_61   1426
#define IDC_STATIC_PROFILE_SETTING_65   1427
#define IDC_STATIC_CHAMFER_SETTING_62   1427
#define IDC_STATIC_PROFILE_SETTING_66   1428
#define IDC_STATIC_CHAMFER_SETTING_63   1428
#define IDC_STATIC_PROFILE_SETTING_67   1429
#define IDC_STATIC_CHAMFER_SETTING_64   1429
#define IDC_STATIC_PROFILE_SETTING_68   1430
#define IDC_STATIC_CHAMFER_SETTING_65   1430
#define IDC_STATIC_PROFILE_SETTING_69   1431
#define IDC_STATIC_CHAMFER_SETTING_66   1431
#define IDC_STATIC_PROFILE_SETTING_70   1432
#define IDC_STATIC_CHAMFER_SETTING_67   1432
#define IDC_STATIC_PROFILE_SETTING_71   1433
#define IDC_STATIC_CHAMFER_SETTING_68   1433
#define IDC_STATIC_PROFILE_SETTING_72   1434
#define IDC_STATIC_CHAMFER_SETTING_69   1434
#define IDC_STATIC_PROFILE_SETTING_73   1435
#define IDC_STATIC_CHAMFER_SETTING_70   1435
#define IDC_STATIC_PROFILE_SETTING_74   1436
#define IDC_STATIC_CHAMFER_SETTING_71   1436
#define IDC_STATIC_PROFILE_SETTING_75   1437
#define IDC_STATIC_CHAMFER_SETTING_72   1437
#define IDC_STATIC_PROFILE_SETTING_76   1438
#define IDC_STATIC_CHAMFER_SETTING_73   1438
#define IDC_STATIC_PROFILE_SETTING_77   1439
#define IDC_STATIC_CHAMFER_SETTING_74   1439
#define IDC_STATIC_PROFILE_SETTING_78   1440
#define IDC_STATIC_CHAMFER_SETTING_75   1440
#define IDC_STATIC_PROFILE_SETTING_79   1441
#define IDC_STATIC_CHAMFER_SETTING_76   1441
#define IDC_CHECK_PROFILE_SETTING_61    1442
#define IDC_STATIC_CHAMFER_SETTING_77   1442
#define IDC_CHECK_PROFILE_SETTING_62    1443
#define IDC_STATIC_CHAMFER_SETTING_78   1443
#define IDC_CHECK_PROFILE_SETTING_63    1444
#define IDC_STATIC_CHAMFER_SETTING_79   1444
#define IDC_CHECK_PROFILE_SETTING_64    1445
#define IDC_CHECK_CHAMFER_SETTING_61    1445
#define IDC_CHECK_PROFILE_SETTING_65    1446
#define IDC_CHECK_CHAMFER_SETTING_62    1446
#define IDC_CHECK_PROFILE_SETTING_66    1447
#define IDC_CHECK_CHAMFER_SETTING_63    1447
#define IDC_CHECK_PROFILE_SETTING_67    1448
#define IDC_CHECK_CHAMFER_SETTING_64    1448
#define IDC_CHECK_PROFILE_SETTING_68    1449
#define IDC_CHECK_CHAMFER_SETTING_65    1449
#define IDC_CHECK_PROFILE_SETTING_69    1450
#define IDC_CHECK_CHAMFER_SETTING_66    1450
#define IDC_CHECK_PROFILE_SETTING_70    1451
#define IDC_CHECK_CHAMFER_SETTING_67    1451
#define IDC_CHECK_PROFILE_SETTING_71    1452
#define IDC_CHECK_CHAMFER_SETTING_68    1452
#define IDC_CHECK_PROFILE_SETTING_72    1453
#define IDC_CHECK_CHAMFER_SETTING_69    1453
#define IDC_CHECK_PROFILE_SETTING_73    1454
#define IDC_CHECK_CHAMFER_SETTING_70    1454
#define IDC_CHECK_PROFILE_SETTING_74    1455
#define IDC_CHECK_CHAMFER_SETTING_71    1455
#define IDC_CHECK_PROFILE_SETTING_75    1456
#define IDC_CHECK_CHAMFER_SETTING_72    1456
#define IDC_CHECK_PROFILE_SETTING_76    1457
#define IDC_CHECK_CHAMFER_SETTING_73    1457
#define IDC_CHECK_PROFILE_SETTING_77    1458
#define IDC_CHECK_CHAMFER_SETTING_74    1458
#define IDC_CHECK_PROFILE_SETTING_78    1459
#define IDC_CHECK_CHAMFER_SETTING_75    1459
#define IDC_CHECK_PROFILE_SETTING_79    1460
#define IDC_CHECK_CHAMFER_SETTING_76    1460
#define IDC_BUTTON_SYSTEM_EXIT          1460
#define IDC_STATIC_C21                  1461
#define IDC_CHECK_CHAMFER_SETTING_77    1461
#define IDC_STATIC_C22                  1462
#define IDC_CHECK_CHAMFER_SETTING_78    1462
#define IDC_STATIC_C23                  1463
#define IDC_CHECK_CHAMFER_SETTING_79    1463
#define IDC_STATIC_C24                  1464
#define IDC_EDIT_CHAMFER_SETTING_REF_61 1464
#define IDC_STATIC_PROFILE_SETTING_R2   1465
#define IDC_EDIT_CHAMFER_SETTING_REF_62 1465
#define IDC_STATIC_PROFILE_SETTING_R3   1466
#define IDC_EDIT_CHAMFER_SETTING_REF_63 1466
#define IDC_EDIT_CHAMFER_SETTING_REF_64 1467
#define IDC_EDIT_PROFILE_SETTING_PLUS_61 1468
#define IDC_EDIT_CHAMFER_SETTING_REF_65 1468
#define IDC_EDIT_PROFILE_SETTING_PLUS_62 1469
#define IDC_EDIT_CHAMFER_SETTING_REF_66 1469
#define IDC_EDIT_PROFILE_SETTING_PLUS_63 1470
#define IDC_EDIT_CHAMFER_SETTING_REF_67 1470
#define IDC_EDIT_PROFILE_SETTING_PLUS_64 1471
#define IDC_EDIT_CHAMFER_SETTING_REF_68 1471
#define IDC_EDIT_PROFILE_SETTING_PLUS_65 1472
#define IDC_EDIT_CHAMFER_SETTING_REF_69 1472
#define IDC_EDIT_PROFILE_SETTING_PLUS_66 1473
#define IDC_EDIT_CHAMFER_SETTING_REF_70 1473
#define IDC_EDIT_PROFILE_SETTING_PLUS_67 1474
#define IDC_EDIT_CHAMFER_SETTING_REF_71 1474
#define IDC_EDIT_PROFILE_SETTING_PLUS_68 1475
#define IDC_EDIT_CHAMFER_SETTING_REF_72 1475
#define IDC_EDIT_PROFILE_SETTING_PLUS_69 1476
#define IDC_EDIT_CHAMFER_SETTING_PLUS_61 1476
#define IDC_EDIT_PROFILE_SETTING_PLUS_70 1477
#define IDC_EDIT_CHAMFER_SETTING_PLUS_62 1477
#define IDC_EDIT_PROFILE_SETTING_PLUS_71 1478
#define IDC_EDIT_CHAMFER_SETTING_PLUS_63 1478
#define IDC_EDIT_PROFILE_SETTING_PLUS_72 1479
#define IDC_EDIT_CHAMFER_SETTING_PLUS_64 1479
#define IDC_EDIT_PROFILE_SETTING_PLUS_73 1480
#define IDC_EDIT_CHAMFER_SETTING_PLUS_65 1480
#define IDC_EDIT_PROFILE_SETTING_PLUS_74 1481
#define IDC_EDIT_CHAMFER_SETTING_PLUS_66 1481
#define IDC_EDIT_PROFILE_SETTING_PLUS_75 1482
#define IDC_EDIT_CHAMFER_SETTING_PLUS_67 1482
#define IDC_EDIT_PROFILE_SETTING_PLUS_76 1483
#define IDC_EDIT_CHAMFER_SETTING_PLUS_68 1483
#define IDC_EDIT_PROFILE_SETTING_PLUS_77 1484
#define IDC_EDIT_CHAMFER_SETTING_PLUS_69 1484
#define IDC_EDIT_PROFILE_SETTING_PLUS_78 1485
#define IDC_EDIT_CHAMFER_SETTING_PLUS_70 1485
#define IDC_EDIT_PROFILE_SETTING_PLUS_79 1486
#define IDC_EDIT_CHAMFER_SETTING_PLUS_71 1486
#define IDC_EDIT_PROFILE_SETTING_MINUS_61 1487
#define IDC_EDIT_CHAMFER_SETTING_PLUS_72 1487
#define IDC_EDIT_PROFILE_SETTING_MINUS_62 1488
#define IDC_EDIT_CHAMFER_SETTING_MINUS_61 1488
#define IDC_EDIT_PROFILE_SETTING_MINUS_63 1489
#define IDC_EDIT_CHAMFER_SETTING_MINUS_62 1489
#define IDC_EDIT_PROFILE_SETTING_MINUS_64 1490
#define IDC_EDIT_CHAMFER_SETTING_MINUS_63 1490
#define IDC_EDIT_PROFILE_SETTING_MINUS_65 1491
#define IDC_EDIT_CHAMFER_SETTING_MINUS_64 1491
#define IDC_EDIT_PROFILE_SETTING_MINUS_66 1492
#define IDC_EDIT_CHAMFER_SETTING_MINUS_65 1492
#define IDC_EDIT_PROFILE_SETTING_MINUS_67 1493
#define IDC_EDIT_CHAMFER_SETTING_MINUS_66 1493
#define IDC_EDIT_PROFILE_SETTING_MINUS_68 1494
#define IDC_EDIT_CHAMFER_SETTING_MINUS_67 1494
#define IDC_EDIT_PROFILE_SETTING_MINUS_69 1495
#define IDC_EDIT_CHAMFER_SETTING_MINUS_68 1495
#define IDC_EDIT_PROFILE_SETTING_MINUS_70 1496
#define IDC_EDIT_CHAMFER_SETTING_MINUS_69 1496
#define IDC_EDIT_PROFILE_SETTING_MINUS_71 1497
#define IDC_EDIT_CHAMFER_SETTING_MINUS_70 1497
#define IDC_EDIT_PROFILE_SETTING_MINUS_72 1498
#define IDC_EDIT_CHAMFER_SETTING_MINUS_71 1498
#define IDC_EDIT_PROFILE_SETTING_MINUS_73 1499
#define IDC_EDIT_CHAMFER_SETTING_MINUS_72 1499
#define IDC_EDIT_PROFILE_SETTING_MINUS_74 1500
#define IDC_EDIT_CHAMFER_SETTING_REF_73 1500
#define IDC_EDIT_PROFILE_SETTING_MINUS_75 1501
#define IDC_EDIT_CHAMFER_SETTING_REF_74 1501
#define IDC_EDIT_PROFILE_SETTING_MINUS_76 1502
#define IDC_EDIT_CHAMFER_SETTING_REF_75 1502
#define IDC_EDIT_PROFILE_SETTING_MINUS_77 1503
#define IDC_EDIT_CHAMFER_SETTING_REF_76 1503
#define IDC_EDIT_PROFILE_SETTING_MINUS_78 1504
#define IDC_EDIT_CHAMFER_SETTING_REF_77 1504
#define IDC_EDIT_PROFILE_SETTING_MINUS_79 1505
#define IDC_EDIT_CHAMFER_SETTING_REF_78 1505
#define IDC_EDIT_PROFILE_SETTING_X_60   1506
#define IDC_EDIT_CHAMFER_SETTING_REF_79 1506
#define IDC_EDIT_PROFILE_SETTING_X_65   1507
#define IDC_EDIT_CHAMFER_SETTING_PLUS_73 1507
#define IDC_EDIT_PROFILE_SETTING_X_70   1508
#define IDC_EDIT_CHAMFER_SETTING_PLUS_74 1508
#define IDC_EDIT_PROFILE_SETTING_X_75   1509
#define IDC_EDIT_CHAMFER_SETTING_PLUS_75 1509
#define IDC_EDIT_PROFILE_SETTING_R_60   1510
#define IDC_EDIT_CHAMFER_SETTING_PLUS_76 1510
#define IDC_EDIT_PROFILE_SETTING_R_61   1511
#define IDC_EDIT_CHAMFER_SETTING_PLUS_77 1511
#define IDC_EDIT_PROFILE_SETTING_R_62   1512
#define IDC_EDIT_CHAMFER_SETTING_PLUS_78 1512
#define IDC_EDIT_PROFILE_SETTING_R_63   1513
#define IDC_EDIT_CHAMFER_SETTING_PLUS_79 1513
#define IDC_EDIT_PROFILE_SETTING_R_64   1514
#define IDC_EDIT_CHAMFER_SETTING_MINUS_73 1514
#define IDC_EDIT_PROFILE_SETTING_R_65   1515
#define IDC_EDIT_CHAMFER_SETTING_MINUS_74 1515
#define IDC_EDIT_PROFILE_SETTING_R_66   1516
#define IDC_EDIT_CHAMFER_SETTING_MINUS_75 1516
#define IDC_EDIT_PROFILE_SETTING_R_67   1517
#define IDC_EDIT_CHAMFER_SETTING_MINUS_76 1517
#define IDC_EDIT_PROFILE_SETTING_R_68   1518
#define IDC_EDIT_CHAMFER_SETTING_MINUS_77 1518
#define IDC_EDIT_PROFILE_SETTING_R_69   1519
#define IDC_EDIT_CHAMFER_SETTING_MINUS_78 1519
#define IDC_EDIT_PROFILE_SETTING_R_70   1520
#define IDC_EDIT_CHAMFER_SETTING_MINUS_79 1520
#define IDC_EDIT_PROFILE_SETTING_R_71   1521
#define IDC_STATIC_C14                  1521
#define IDC_EDIT_PROFILE_SETTING_R_72   1522
#define IDC_STATIC_C31                  1522
#define IDC_EDIT_PROFILE_SETTING_R_73   1523
#define IDC_STATIC_C32                  1523
#define IDC_EDIT_PROFILE_SETTING_R_74   1524
#define IDC_STATIC_C33                  1524
#define IDC_EDIT_PROFILE_SETTING_R_75   1525
#define IDC_STATIC_C38                  1525
#define IDC_EDIT_PROFILE_SETTING_R_76   1526
#define IDC_STATIC_C39                  1526
#define IDC_EDIT_PROFILE_SETTING_R_77   1527
#define IDC_STATIC_C40                  1527
#define IDC_EDIT_PROFILE_SETTING_R_78   1528
#define IDC_STATIC_C41                  1528
#define IDC_EDIT_PROFILE_SETTING_R_79   1529
#define IDC_STATIC_C42                  1529
#define IDC_STATIC_C15                  1530
#define IDC_STATIC_C43                  1530
#define IDC_EDIT_PROFILE_SETTING_R_Y_60 1531
#define IDC_EDIT_PROFILE_SETTING_R_Y_65 1536
#define IDC_EDIT_PROFILE_SETTING_R_Y_70 1541
#define IDC_EDIT_PROFILE_SETTING_R_Y_75 1546
#define IDC_RDO_IS_MARK_UP              1780
#define IDC_RDO_IS_MARK_DN              1781
#define IDC_RDO_MARK_POS_1              1782
#define IDC_RDO_MARK_POS_2              1783
#define IDC_RDO_MARK_POS_3              1784
#define IDC_RDO_BRIGHT_MARK             1790
#define IDC_RDO_DARK_MARK               1791
#define IDC_RDO_USER_MARK               1792
#define IDC_RDO_SIDE_A                  1800
#define IDC_RDO_SIDE_B                  1801
#define IDC_RDO_SIDE_C                  1802
#define IDC_RDO_SIDE_D                  1803
#define IDC_RDO_SIDE_A_DN               1804
#define IDC_RDO_SIDE_B_DN               1805
#define IDC_RDO_SIDE_C_DN               1806
#define IDC_RDO_SIDE_D_DN               1807
#define IDC_RDO_RCP_INSPECT_SETTING     1808
#define IDC_RDO_RCP_PROFILE_SETTING     1809
#define IDC_RDO_RCP_CHAMFER_SETTING     1810
#define ID_PROFILE_CHECKALL             32782
#define ID_PROFILE_CLEARALL             32783
#define ID_PROFILE_CURRENTX             32784
#define ID_PROFILE_CURRENTY             32785
#define ID_PROFILE_SAVEDX               32786
#define ID_PROFILE_SAVEDY               32787
#define ID_PROFILE_PROJECTIONX          32788
#define ID_PROFILE_PROJECTIONY          32789
#define ID_MEASURE_CHECKALL             32790
#define ID_MEASURE_CLEARALL             32791
#define ID_MEASURE_DISTANCEX            32792
#define ID_MEASURE_DISTANCEY            32793
#define ID_MEASURE_DIAGONAL             32794
#define ID_IMAGE_MANIFY                 32795
#define ID_VIEW_CHECKALL                32796
#define ID_VIEW_CLEARALL                32797
#define ID_VIEW_SHOW_MEASURE_LINE       32798
#define ID_VIEW_SHOW_REF_LINE           32799
#define ID_VIEW_SHOW_SUB_LINE           32800
#define ID_IMGMODIFY_DRAWBRUSH          32801
#define ID_VIEW_SHOW_MEASURE_DATA       32812
 
// Next default values for new objects
// 
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE        1028
#define _APS_NEXT_COMMAND_VALUE         32771
#define _APS_NEXT_CONTROL_VALUE         1007
#define _APS_NEXT_SYMED_VALUE           1000
#endif
#endif