File: gds_codes.pas

package info (click to toggle)
firebird4.0 4.0.6.3221.ds6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 41,964 kB
  • sloc: ansic: 393,248; cpp: 356,542; sql: 15,263; yacc: 8,713; fortran: 5,645; sh: 5,184; pascal: 3,328; makefile: 1,342; asm: 271; perl: 194; xml: 55; csh: 15; awk: 1
file content (2955 lines) | stat: -rw-r--r-- 150,069 bytes parent folder | download | duplicates (2)
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
(*
 * The contents of this file are subject to the Interbase Public
 * License Version 1.0 (the "License"); you may not use this file
 * except in compliance with the License. You may obtain a copy
 * of the License at http://www.Inprise.com/IPL.html
 *
 * Software distributed under the License is distributed on an
 * "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
 * or implied. See the License for the specific language governing
 * rights and limitations under the License.
 *
 * The content of this file was generated by the Firebird project
 * using the program src/misc/codes.epp
 *)
(*
 *
 * *** WARNING *** - This file is automatically generated by codes.epp - do not edit!
 *
 *)

const
	isc_facility		= 20;
	isc_err_base		= 335544320;
	isc_err_factor		= 1;
	gds_facility		= 20;
	gds_err_base		= 335544320;
	gds_err_factor		= 1;

	isc_arg_end		= 0;	(* end of argument list *)
	isc_arg_gds		= 1;	(* generic DSRI status value *)
	isc_arg_string		= 2;	(* string argument *)
	isc_arg_cstring		= 3;	(* count & string argument *)
	isc_arg_number		= 4;	(* numeric argument (long) *)
	isc_arg_interpreted	= 5;	(* interpreted status code (string) *)
	isc_arg_vms		= 6;	(* VAX/VMS status code (long) *)
	isc_arg_unix		= 7;	(* UNIX error code *)
	isc_arg_domain		= 8;	(* Apollo/Domain error code *)
	isc_arg_dos		= 9;	(* MSDOS/OS2 error code *)
	gds_arg_end		= 0;	(* end of argument list *)
	gds_arg_gds		= 1;	(* generic DSRI status value *)
	gds_arg_string		= 2;	(* string argument *)
	gds_arg_cstring		= 3;	(* count & string argument *)
	gds_arg_number		= 4;	(* numeric argument (long) *)
	gds_arg_interpreted	= 5;	(* interpreted status code (string) *)
	gds_arg_vms		= 6;	(* VAX/VMS status code (long) *)
	gds_arg_unix		= 7;	(* UNIX error code *)
	gds_arg_domain		= 8;	(* Apollo/Domain error code *)
	gds_arg_dos		= 9;	(* MSDOS/OS2 error code *)

	isc_arith_except                     = 335544321;
	gds_arith_except                     = 335544321;
	isc_bad_dbkey                        = 335544322;
	gds_bad_dbkey                        = 335544322;
	isc_bad_db_format                    = 335544323;
	gds_bad_db_format                    = 335544323;
	isc_bad_db_handle                    = 335544324;
	gds_bad_db_handle                    = 335544324;
	isc_bad_dpb_content                  = 335544325;
	gds_bad_dpb_content                  = 335544325;
	isc_bad_dpb_form                     = 335544326;
	gds_bad_dpb_form                     = 335544326;
	isc_bad_req_handle                   = 335544327;
	gds_bad_req_handle                   = 335544327;
	isc_bad_segstr_handle                = 335544328;
	gds_bad_segstr_handle                = 335544328;
	isc_bad_segstr_id                    = 335544329;
	gds_bad_segstr_id                    = 335544329;
	isc_bad_tpb_content                  = 335544330;
	gds_bad_tpb_content                  = 335544330;
	isc_bad_tpb_form                     = 335544331;
	gds_bad_tpb_form                     = 335544331;
	isc_bad_trans_handle                 = 335544332;
	gds_bad_trans_handle                 = 335544332;
	isc_bug_check                        = 335544333;
	gds_bug_check                        = 335544333;
	isc_convert_error                    = 335544334;
	gds_convert_error                    = 335544334;
	isc_db_corrupt                       = 335544335;
	gds_db_corrupt                       = 335544335;
	isc_deadlock                         = 335544336;
	gds_deadlock                         = 335544336;
	isc_excess_trans                     = 335544337;
	gds_excess_trans                     = 335544337;
	isc_from_no_match                    = 335544338;
	gds_from_no_match                    = 335544338;
	isc_infinap                          = 335544339;
	gds_infinap                          = 335544339;
	isc_infona                           = 335544340;
	gds_infona                           = 335544340;
	isc_infunk                           = 335544341;
	gds_infunk                           = 335544341;
	isc_integ_fail                       = 335544342;
	gds_integ_fail                       = 335544342;
	isc_invalid_blr                      = 335544343;
	gds_invalid_blr                      = 335544343;
	isc_io_error                         = 335544344;
	gds_io_error                         = 335544344;
	isc_lock_conflict                    = 335544345;
	gds_lock_conflict                    = 335544345;
	isc_metadata_corrupt                 = 335544346;
	gds_metadata_corrupt                 = 335544346;
	isc_not_valid                        = 335544347;
	gds_not_valid                        = 335544347;
	isc_no_cur_rec                       = 335544348;
	gds_no_cur_rec                       = 335544348;
	isc_no_dup                           = 335544349;
	gds_no_dup                           = 335544349;
	isc_no_finish                        = 335544350;
	gds_no_finish                        = 335544350;
	isc_no_meta_update                   = 335544351;
	gds_no_meta_update                   = 335544351;
	isc_no_priv                          = 335544352;
	gds_no_priv                          = 335544352;
	isc_no_recon                         = 335544353;
	gds_no_recon                         = 335544353;
	isc_no_record                        = 335544354;
	gds_no_record                        = 335544354;
	isc_no_segstr_close                  = 335544355;
	gds_no_segstr_close                  = 335544355;
	isc_obsolete_metadata                = 335544356;
	gds_obsolete_metadata                = 335544356;
	isc_open_trans                       = 335544357;
	gds_open_trans                       = 335544357;
	isc_port_len                         = 335544358;
	gds_port_len                         = 335544358;
	isc_read_only_field                  = 335544359;
	gds_read_only_field                  = 335544359;
	isc_read_only_rel                    = 335544360;
	gds_read_only_rel                    = 335544360;
	isc_read_only_trans                  = 335544361;
	gds_read_only_trans                  = 335544361;
	isc_read_only_view                   = 335544362;
	gds_read_only_view                   = 335544362;
	isc_req_no_trans                     = 335544363;
	gds_req_no_trans                     = 335544363;
	isc_req_sync                         = 335544364;
	gds_req_sync                         = 335544364;
	isc_req_wrong_db                     = 335544365;
	gds_req_wrong_db                     = 335544365;
	isc_segment                          = 335544366;
	gds_segment                          = 335544366;
	isc_segstr_eof                       = 335544367;
	gds_segstr_eof                       = 335544367;
	isc_segstr_no_op                     = 335544368;
	gds_segstr_no_op                     = 335544368;
	isc_segstr_no_read                   = 335544369;
	gds_segstr_no_read                   = 335544369;
	isc_segstr_no_trans                  = 335544370;
	gds_segstr_no_trans                  = 335544370;
	isc_segstr_no_write                  = 335544371;
	gds_segstr_no_write                  = 335544371;
	isc_segstr_wrong_db                  = 335544372;
	gds_segstr_wrong_db                  = 335544372;
	isc_sys_request                      = 335544373;
	gds_sys_request                      = 335544373;
	isc_stream_eof                       = 335544374;
	gds_stream_eof                       = 335544374;
	isc_unavailable                      = 335544375;
	gds_unavailable                      = 335544375;
	isc_unres_rel                        = 335544376;
	gds_unres_rel                        = 335544376;
	isc_uns_ext                          = 335544377;
	gds_uns_ext                          = 335544377;
	isc_wish_list                        = 335544378;
	gds_wish_list                        = 335544378;
	isc_wrong_ods                        = 335544379;
	gds_wrong_ods                        = 335544379;
	isc_wronumarg                        = 335544380;
	gds_wronumarg                        = 335544380;
	isc_imp_exc                          = 335544381;
	gds_imp_exc                          = 335544381;
	isc_random                           = 335544382;
	gds_random                           = 335544382;
	isc_fatal_conflict                   = 335544383;
	gds_fatal_conflict                   = 335544383;
	isc_badblk                           = 335544384;
	gds_badblk                           = 335544384;
	isc_invpoolcl                        = 335544385;
	gds_invpoolcl                        = 335544385;
	isc_nopoolids                        = 335544386;
	gds_nopoolids                        = 335544386;
	isc_relbadblk                        = 335544387;
	gds_relbadblk                        = 335544387;
	isc_blktoobig                        = 335544388;
	gds_blktoobig                        = 335544388;
	isc_bufexh                           = 335544389;
	gds_bufexh                           = 335544389;
	isc_syntaxerr                        = 335544390;
	gds_syntaxerr                        = 335544390;
	isc_bufinuse                         = 335544391;
	gds_bufinuse                         = 335544391;
	isc_bdbincon                         = 335544392;
	gds_bdbincon                         = 335544392;
	isc_reqinuse                         = 335544393;
	gds_reqinuse                         = 335544393;
	isc_badodsver                        = 335544394;
	gds_badodsver                        = 335544394;
	isc_relnotdef                        = 335544395;
	gds_relnotdef                        = 335544395;
	isc_fldnotdef                        = 335544396;
	gds_fldnotdef                        = 335544396;
	isc_dirtypage                        = 335544397;
	gds_dirtypage                        = 335544397;
	isc_waifortra                        = 335544398;
	gds_waifortra                        = 335544398;
	isc_doubleloc                        = 335544399;
	gds_doubleloc                        = 335544399;
	isc_nodnotfnd                        = 335544400;
	gds_nodnotfnd                        = 335544400;
	isc_dupnodfnd                        = 335544401;
	gds_dupnodfnd                        = 335544401;
	isc_locnotmar                        = 335544402;
	gds_locnotmar                        = 335544402;
	isc_badpagtyp                        = 335544403;
	gds_badpagtyp                        = 335544403;
	isc_corrupt                          = 335544404;
	gds_corrupt                          = 335544404;
	isc_badpage                          = 335544405;
	gds_badpage                          = 335544405;
	isc_badindex                         = 335544406;
	gds_badindex                         = 335544406;
	isc_dbbnotzer                        = 335544407;
	gds_dbbnotzer                        = 335544407;
	isc_tranotzer                        = 335544408;
	gds_tranotzer                        = 335544408;
	isc_trareqmis                        = 335544409;
	gds_trareqmis                        = 335544409;
	isc_badhndcnt                        = 335544410;
	gds_badhndcnt                        = 335544410;
	isc_wrotpbver                        = 335544411;
	gds_wrotpbver                        = 335544411;
	isc_wroblrver                        = 335544412;
	gds_wroblrver                        = 335544412;
	isc_wrodpbver                        = 335544413;
	gds_wrodpbver                        = 335544413;
	isc_blobnotsup                       = 335544414;
	gds_blobnotsup                       = 335544414;
	isc_badrelation                      = 335544415;
	gds_badrelation                      = 335544415;
	isc_nodetach                         = 335544416;
	gds_nodetach                         = 335544416;
	isc_notremote                        = 335544417;
	gds_notremote                        = 335544417;
	isc_trainlim                         = 335544418;
	gds_trainlim                         = 335544418;
	isc_notinlim                         = 335544419;
	gds_notinlim                         = 335544419;
	isc_traoutsta                        = 335544420;
	gds_traoutsta                        = 335544420;
	isc_connect_reject                   = 335544421;
	gds_connect_reject                   = 335544421;
	isc_dbfile                           = 335544422;
	gds_dbfile                           = 335544422;
	isc_orphan                           = 335544423;
	gds_orphan                           = 335544423;
	isc_no_lock_mgr                      = 335544424;
	gds_no_lock_mgr                      = 335544424;
	isc_ctxinuse                         = 335544425;
	gds_ctxinuse                         = 335544425;
	isc_ctxnotdef                        = 335544426;
	gds_ctxnotdef                        = 335544426;
	isc_datnotsup                        = 335544427;
	gds_datnotsup                        = 335544427;
	isc_badmsgnum                        = 335544428;
	gds_badmsgnum                        = 335544428;
	isc_badparnum                        = 335544429;
	gds_badparnum                        = 335544429;
	isc_virmemexh                        = 335544430;
	gds_virmemexh                        = 335544430;
	isc_blocking_signal                  = 335544431;
	gds_blocking_signal                  = 335544431;
	isc_lockmanerr                       = 335544432;
	gds_lockmanerr                       = 335544432;
	isc_journerr                         = 335544433;
	gds_journerr                         = 335544433;
	isc_keytoobig                        = 335544434;
	gds_keytoobig                        = 335544434;
	isc_nullsegkey                       = 335544435;
	gds_nullsegkey                       = 335544435;
	isc_sqlerr                           = 335544436;
	gds_sqlerr                           = 335544436;
	isc_wrodynver                        = 335544437;
	gds_wrodynver                        = 335544437;
	isc_funnotdef                        = 335544438;
	gds_funnotdef                        = 335544438;
	isc_funmismat                        = 335544439;
	gds_funmismat                        = 335544439;
	isc_bad_msg_vec                      = 335544440;
	gds_bad_msg_vec                      = 335544440;
	isc_bad_detach                       = 335544441;
	gds_bad_detach                       = 335544441;
	isc_noargacc_read                    = 335544442;
	gds_noargacc_read                    = 335544442;
	isc_noargacc_write                   = 335544443;
	gds_noargacc_write                   = 335544443;
	isc_read_only                        = 335544444;
	gds_read_only                        = 335544444;
	isc_ext_err                          = 335544445;
	gds_ext_err                          = 335544445;
	isc_non_updatable                    = 335544446;
	gds_non_updatable                    = 335544446;
	isc_no_rollback                      = 335544447;
	gds_no_rollback                      = 335544447;
	isc_bad_sec_info                     = 335544448;
	gds_bad_sec_info                     = 335544448;
	isc_invalid_sec_info                 = 335544449;
	gds_invalid_sec_info                 = 335544449;
	isc_misc_interpreted                 = 335544450;
	gds_misc_interpreted                 = 335544450;
	isc_update_conflict                  = 335544451;
	gds_update_conflict                  = 335544451;
	isc_unlicensed                       = 335544452;
	gds_unlicensed                       = 335544452;
	isc_obj_in_use                       = 335544453;
	gds_obj_in_use                       = 335544453;
	isc_nofilter                         = 335544454;
	gds_nofilter                         = 335544454;
	isc_shadow_accessed                  = 335544455;
	gds_shadow_accessed                  = 335544455;
	isc_invalid_sdl                      = 335544456;
	gds_invalid_sdl                      = 335544456;
	isc_out_of_bounds                    = 335544457;
	gds_out_of_bounds                    = 335544457;
	isc_invalid_dimension                = 335544458;
	gds_invalid_dimension                = 335544458;
	isc_rec_in_limbo                     = 335544459;
	gds_rec_in_limbo                     = 335544459;
	isc_shadow_missing                   = 335544460;
	gds_shadow_missing                   = 335544460;
	isc_cant_validate                    = 335544461;
	gds_cant_validate                    = 335544461;
	isc_cant_start_journal               = 335544462;
	gds_cant_start_journal               = 335544462;
	isc_gennotdef                        = 335544463;
	gds_gennotdef                        = 335544463;
	isc_cant_start_logging               = 335544464;
	gds_cant_start_logging               = 335544464;
	isc_bad_segstr_type                  = 335544465;
	gds_bad_segstr_type                  = 335544465;
	isc_foreign_key                      = 335544466;
	gds_foreign_key                      = 335544466;
	isc_high_minor                       = 335544467;
	gds_high_minor                       = 335544467;
	isc_tra_state                        = 335544468;
	gds_tra_state                        = 335544468;
	isc_trans_invalid                    = 335544469;
	gds_trans_invalid                    = 335544469;
	isc_buf_invalid                      = 335544470;
	gds_buf_invalid                      = 335544470;
	isc_indexnotdefined                  = 335544471;
	gds_indexnotdefined                  = 335544471;
	isc_login                            = 335544472;
	gds_login                            = 335544472;
	isc_invalid_bookmark                 = 335544473;
	gds_invalid_bookmark                 = 335544473;
	isc_bad_lock_level                   = 335544474;
	gds_bad_lock_level                   = 335544474;
	isc_relation_lock                    = 335544475;
	gds_relation_lock                    = 335544475;
	isc_record_lock                      = 335544476;
	gds_record_lock                      = 335544476;
	isc_max_idx                          = 335544477;
	gds_max_idx                          = 335544477;
	isc_jrn_enable                       = 335544478;
	gds_jrn_enable                       = 335544478;
	isc_old_failure                      = 335544479;
	gds_old_failure                      = 335544479;
	isc_old_in_progress                  = 335544480;
	gds_old_in_progress                  = 335544480;
	isc_old_no_space                     = 335544481;
	gds_old_no_space                     = 335544481;
	isc_no_wal_no_jrn                    = 335544482;
	gds_no_wal_no_jrn                    = 335544482;
	isc_num_old_files                    = 335544483;
	gds_num_old_files                    = 335544483;
	isc_wal_file_open                    = 335544484;
	gds_wal_file_open                    = 335544484;
	isc_bad_stmt_handle                  = 335544485;
	gds_bad_stmt_handle                  = 335544485;
	isc_wal_failure                      = 335544486;
	gds_wal_failure                      = 335544486;
	isc_walw_err                         = 335544487;
	gds_walw_err                         = 335544487;
	isc_logh_small                       = 335544488;
	gds_logh_small                       = 335544488;
	isc_logh_inv_version                 = 335544489;
	gds_logh_inv_version                 = 335544489;
	isc_logh_open_flag                   = 335544490;
	gds_logh_open_flag                   = 335544490;
	isc_logh_open_flag2                  = 335544491;
	gds_logh_open_flag2                  = 335544491;
	isc_logh_diff_dbname                 = 335544492;
	gds_logh_diff_dbname                 = 335544492;
	isc_logf_unexpected_eof              = 335544493;
	gds_logf_unexpected_eof              = 335544493;
	isc_logr_incomplete                  = 335544494;
	gds_logr_incomplete                  = 335544494;
	isc_logr_header_small                = 335544495;
	gds_logr_header_small                = 335544495;
	isc_logb_small                       = 335544496;
	gds_logb_small                       = 335544496;
	isc_wal_illegal_attach               = 335544497;
	gds_wal_illegal_attach               = 335544497;
	isc_wal_invalid_wpb                  = 335544498;
	gds_wal_invalid_wpb                  = 335544498;
	isc_wal_err_rollover                 = 335544499;
	gds_wal_err_rollover                 = 335544499;
	isc_no_wal                           = 335544500;
	gds_no_wal                           = 335544500;
	isc_drop_wal                         = 335544501;
	gds_drop_wal                         = 335544501;
	isc_stream_not_defined               = 335544502;
	gds_stream_not_defined               = 335544502;
	isc_wal_subsys_error                 = 335544503;
	gds_wal_subsys_error                 = 335544503;
	isc_wal_subsys_corrupt               = 335544504;
	gds_wal_subsys_corrupt               = 335544504;
	isc_no_archive                       = 335544505;
	gds_no_archive                       = 335544505;
	isc_shutinprog                       = 335544506;
	gds_shutinprog                       = 335544506;
	isc_range_in_use                     = 335544507;
	gds_range_in_use                     = 335544507;
	isc_range_not_found                  = 335544508;
	gds_range_not_found                  = 335544508;
	isc_charset_not_found                = 335544509;
	gds_charset_not_found                = 335544509;
	isc_lock_timeout                     = 335544510;
	gds_lock_timeout                     = 335544510;
	isc_prcnotdef                        = 335544511;
	gds_prcnotdef                        = 335544511;
	isc_prcmismat                        = 335544512;
	gds_prcmismat                        = 335544512;
	isc_wal_bugcheck                     = 335544513;
	gds_wal_bugcheck                     = 335544513;
	isc_wal_cant_expand                  = 335544514;
	gds_wal_cant_expand                  = 335544514;
	isc_codnotdef                        = 335544515;
	gds_codnotdef                        = 335544515;
	isc_xcpnotdef                        = 335544516;
	gds_xcpnotdef                        = 335544516;
	isc_except                           = 335544517;
	gds_except                           = 335544517;
	isc_cache_restart                    = 335544518;
	gds_cache_restart                    = 335544518;
	isc_bad_lock_handle                  = 335544519;
	gds_bad_lock_handle                  = 335544519;
	isc_jrn_present                      = 335544520;
	gds_jrn_present                      = 335544520;
	isc_wal_err_rollover2                = 335544521;
	gds_wal_err_rollover2                = 335544521;
	isc_wal_err_logwrite                 = 335544522;
	gds_wal_err_logwrite                 = 335544522;
	isc_wal_err_jrn_comm                 = 335544523;
	gds_wal_err_jrn_comm                 = 335544523;
	isc_wal_err_expansion                = 335544524;
	gds_wal_err_expansion                = 335544524;
	isc_wal_err_setup                    = 335544525;
	gds_wal_err_setup                    = 335544525;
	isc_wal_err_ww_sync                  = 335544526;
	gds_wal_err_ww_sync                  = 335544526;
	isc_wal_err_ww_start                 = 335544527;
	gds_wal_err_ww_start                 = 335544527;
	isc_shutdown                         = 335544528;
	gds_shutdown                         = 335544528;
	isc_existing_priv_mod                = 335544529;
	gds_existing_priv_mod                = 335544529;
	isc_primary_key_ref                  = 335544530;
	gds_primary_key_ref                  = 335544530;
	isc_primary_key_notnull              = 335544531;
	gds_primary_key_notnull              = 335544531;
	isc_ref_cnstrnt_notfound             = 335544532;
	gds_ref_cnstrnt_notfound             = 335544532;
	isc_foreign_key_notfound             = 335544533;
	gds_foreign_key_notfound             = 335544533;
	isc_ref_cnstrnt_update               = 335544534;
	gds_ref_cnstrnt_update               = 335544534;
	isc_check_cnstrnt_update             = 335544535;
	gds_check_cnstrnt_update             = 335544535;
	isc_check_cnstrnt_del                = 335544536;
	gds_check_cnstrnt_del                = 335544536;
	isc_integ_index_seg_del              = 335544537;
	gds_integ_index_seg_del              = 335544537;
	isc_integ_index_seg_mod              = 335544538;
	gds_integ_index_seg_mod              = 335544538;
	isc_integ_index_del                  = 335544539;
	gds_integ_index_del                  = 335544539;
	isc_integ_index_mod                  = 335544540;
	gds_integ_index_mod                  = 335544540;
	isc_check_trig_del                   = 335544541;
	gds_check_trig_del                   = 335544541;
	isc_check_trig_update                = 335544542;
	gds_check_trig_update                = 335544542;
	isc_cnstrnt_fld_del                  = 335544543;
	gds_cnstrnt_fld_del                  = 335544543;
	isc_cnstrnt_fld_rename               = 335544544;
	gds_cnstrnt_fld_rename               = 335544544;
	isc_rel_cnstrnt_update               = 335544545;
	gds_rel_cnstrnt_update               = 335544545;
	isc_constaint_on_view                = 335544546;
	gds_constaint_on_view                = 335544546;
	isc_invld_cnstrnt_type               = 335544547;
	gds_invld_cnstrnt_type               = 335544547;
	isc_primary_key_exists               = 335544548;
	gds_primary_key_exists               = 335544548;
	isc_systrig_update                   = 335544549;
	gds_systrig_update                   = 335544549;
	isc_not_rel_owner                    = 335544550;
	gds_not_rel_owner                    = 335544550;
	isc_grant_obj_notfound               = 335544551;
	gds_grant_obj_notfound               = 335544551;
	isc_grant_fld_notfound               = 335544552;
	gds_grant_fld_notfound               = 335544552;
	isc_grant_nopriv                     = 335544553;
	gds_grant_nopriv                     = 335544553;
	isc_nonsql_security_rel              = 335544554;
	gds_nonsql_security_rel              = 335544554;
	isc_nonsql_security_fld              = 335544555;
	gds_nonsql_security_fld              = 335544555;
	isc_wal_cache_err                    = 335544556;
	gds_wal_cache_err                    = 335544556;
	isc_shutfail                         = 335544557;
	gds_shutfail                         = 335544557;
	isc_check_constraint                 = 335544558;
	gds_check_constraint                 = 335544558;
	isc_bad_svc_handle                   = 335544559;
	gds_bad_svc_handle                   = 335544559;
	isc_shutwarn                         = 335544560;
	gds_shutwarn                         = 335544560;
	isc_wrospbver                        = 335544561;
	gds_wrospbver                        = 335544561;
	isc_bad_spb_form                     = 335544562;
	gds_bad_spb_form                     = 335544562;
	isc_svcnotdef                        = 335544563;
	gds_svcnotdef                        = 335544563;
	isc_no_jrn                           = 335544564;
	gds_no_jrn                           = 335544564;
	isc_transliteration_failed           = 335544565;
	gds_transliteration_failed           = 335544565;
	isc_start_cm_for_wal                 = 335544566;
	gds_start_cm_for_wal                 = 335544566;
	isc_wal_ovflow_log_required          = 335544567;
	gds_wal_ovflow_log_required          = 335544567;
	isc_text_subtype                     = 335544568;
	gds_text_subtype                     = 335544568;
	isc_dsql_error                       = 335544569;
	gds_dsql_error                       = 335544569;
	isc_dsql_command_err                 = 335544570;
	gds_dsql_command_err                 = 335544570;
	isc_dsql_constant_err                = 335544571;
	gds_dsql_constant_err                = 335544571;
	isc_dsql_cursor_err                  = 335544572;
	gds_dsql_cursor_err                  = 335544572;
	isc_dsql_datatype_err                = 335544573;
	gds_dsql_datatype_err                = 335544573;
	isc_dsql_decl_err                    = 335544574;
	gds_dsql_decl_err                    = 335544574;
	isc_dsql_cursor_update_err           = 335544575;
	gds_dsql_cursor_update_err           = 335544575;
	isc_dsql_cursor_open_err             = 335544576;
	gds_dsql_cursor_open_err             = 335544576;
	isc_dsql_cursor_close_err            = 335544577;
	gds_dsql_cursor_close_err            = 335544577;
	isc_dsql_field_err                   = 335544578;
	gds_dsql_field_err                   = 335544578;
	isc_dsql_internal_err                = 335544579;
	gds_dsql_internal_err                = 335544579;
	isc_dsql_relation_err                = 335544580;
	gds_dsql_relation_err                = 335544580;
	isc_dsql_procedure_err               = 335544581;
	gds_dsql_procedure_err               = 335544581;
	isc_dsql_request_err                 = 335544582;
	gds_dsql_request_err                 = 335544582;
	isc_dsql_sqlda_err                   = 335544583;
	gds_dsql_sqlda_err                   = 335544583;
	isc_dsql_var_count_err               = 335544584;
	gds_dsql_var_count_err               = 335544584;
	isc_dsql_stmt_handle                 = 335544585;
	gds_dsql_stmt_handle                 = 335544585;
	isc_dsql_function_err                = 335544586;
	gds_dsql_function_err                = 335544586;
	isc_dsql_blob_err                    = 335544587;
	gds_dsql_blob_err                    = 335544587;
	isc_collation_not_found              = 335544588;
	gds_collation_not_found              = 335544588;
	isc_collation_not_for_charset        = 335544589;
	gds_collation_not_for_charset        = 335544589;
	isc_dsql_dup_option                  = 335544590;
	gds_dsql_dup_option                  = 335544590;
	isc_dsql_tran_err                    = 335544591;
	gds_dsql_tran_err                    = 335544591;
	isc_dsql_invalid_array               = 335544592;
	gds_dsql_invalid_array               = 335544592;
	isc_dsql_max_arr_dim_exceeded        = 335544593;
	gds_dsql_max_arr_dim_exceeded        = 335544593;
	isc_dsql_arr_range_error             = 335544594;
	gds_dsql_arr_range_error             = 335544594;
	isc_dsql_trigger_err                 = 335544595;
	gds_dsql_trigger_err                 = 335544595;
	isc_dsql_subselect_err               = 335544596;
	gds_dsql_subselect_err               = 335544596;
	isc_dsql_crdb_prepare_err            = 335544597;
	gds_dsql_crdb_prepare_err            = 335544597;
	isc_specify_field_err                = 335544598;
	gds_specify_field_err                = 335544598;
	isc_num_field_err                    = 335544599;
	gds_num_field_err                    = 335544599;
	isc_col_name_err                     = 335544600;
	gds_col_name_err                     = 335544600;
	isc_where_err                        = 335544601;
	gds_where_err                        = 335544601;
	isc_table_view_err                   = 335544602;
	gds_table_view_err                   = 335544602;
	isc_distinct_err                     = 335544603;
	gds_distinct_err                     = 335544603;
	isc_key_field_count_err              = 335544604;
	gds_key_field_count_err              = 335544604;
	isc_subquery_err                     = 335544605;
	gds_subquery_err                     = 335544605;
	isc_expression_eval_err              = 335544606;
	gds_expression_eval_err              = 335544606;
	isc_node_err                         = 335544607;
	gds_node_err                         = 335544607;
	isc_command_end_err                  = 335544608;
	gds_command_end_err                  = 335544608;
	isc_index_name                       = 335544609;
	gds_index_name                       = 335544609;
	isc_exception_name                   = 335544610;
	gds_exception_name                   = 335544610;
	isc_field_name                       = 335544611;
	gds_field_name                       = 335544611;
	isc_token_err                        = 335544612;
	gds_token_err                        = 335544612;
	isc_union_err                        = 335544613;
	gds_union_err                        = 335544613;
	isc_dsql_construct_err               = 335544614;
	gds_dsql_construct_err               = 335544614;
	isc_field_aggregate_err              = 335544615;
	gds_field_aggregate_err              = 335544615;
	isc_field_ref_err                    = 335544616;
	gds_field_ref_err                    = 335544616;
	isc_order_by_err                     = 335544617;
	gds_order_by_err                     = 335544617;
	isc_return_mode_err                  = 335544618;
	gds_return_mode_err                  = 335544618;
	isc_extern_func_err                  = 335544619;
	gds_extern_func_err                  = 335544619;
	isc_alias_conflict_err               = 335544620;
	gds_alias_conflict_err               = 335544620;
	isc_procedure_conflict_error         = 335544621;
	gds_procedure_conflict_error         = 335544621;
	isc_relation_conflict_err            = 335544622;
	gds_relation_conflict_err            = 335544622;
	isc_dsql_domain_err                  = 335544623;
	gds_dsql_domain_err                  = 335544623;
	isc_idx_seg_err                      = 335544624;
	gds_idx_seg_err                      = 335544624;
	isc_node_name_err                    = 335544625;
	gds_node_name_err                    = 335544625;
	isc_table_name                       = 335544626;
	gds_table_name                       = 335544626;
	isc_proc_name                        = 335544627;
	gds_proc_name                        = 335544627;
	isc_idx_create_err                   = 335544628;
	gds_idx_create_err                   = 335544628;
	isc_wal_shadow_err                   = 335544629;
	gds_wal_shadow_err                   = 335544629;
	isc_dependency                       = 335544630;
	gds_dependency                       = 335544630;
	isc_idx_key_err                      = 335544631;
	gds_idx_key_err                      = 335544631;
	isc_dsql_file_length_err             = 335544632;
	gds_dsql_file_length_err             = 335544632;
	isc_dsql_shadow_number_err           = 335544633;
	gds_dsql_shadow_number_err           = 335544633;
	isc_dsql_token_unk_err               = 335544634;
	gds_dsql_token_unk_err               = 335544634;
	isc_dsql_no_relation_alias           = 335544635;
	gds_dsql_no_relation_alias           = 335544635;
	isc_indexname                        = 335544636;
	gds_indexname                        = 335544636;
	isc_no_stream_plan                   = 335544637;
	gds_no_stream_plan                   = 335544637;
	isc_stream_twice                     = 335544638;
	gds_stream_twice                     = 335544638;
	isc_stream_not_found                 = 335544639;
	gds_stream_not_found                 = 335544639;
	isc_collation_requires_text          = 335544640;
	gds_collation_requires_text          = 335544640;
	isc_dsql_domain_not_found            = 335544641;
	gds_dsql_domain_not_found            = 335544641;
	isc_index_unused                     = 335544642;
	gds_index_unused                     = 335544642;
	isc_dsql_self_join                   = 335544643;
	gds_dsql_self_join                   = 335544643;
	isc_stream_bof                       = 335544644;
	gds_stream_bof                       = 335544644;
	isc_stream_crack                     = 335544645;
	gds_stream_crack                     = 335544645;
	isc_db_or_file_exists                = 335544646;
	gds_db_or_file_exists                = 335544646;
	isc_invalid_operator                 = 335544647;
	gds_invalid_operator                 = 335544647;
	isc_conn_lost                        = 335544648;
	gds_conn_lost                        = 335544648;
	isc_bad_checksum                     = 335544649;
	gds_bad_checksum                     = 335544649;
	isc_page_type_err                    = 335544650;
	gds_page_type_err                    = 335544650;
	isc_ext_readonly_err                 = 335544651;
	gds_ext_readonly_err                 = 335544651;
	isc_sing_select_err                  = 335544652;
	gds_sing_select_err                  = 335544652;
	isc_psw_attach                       = 335544653;
	gds_psw_attach                       = 335544653;
	isc_psw_start_trans                  = 335544654;
	gds_psw_start_trans                  = 335544654;
	isc_invalid_direction                = 335544655;
	gds_invalid_direction                = 335544655;
	isc_dsql_var_conflict                = 335544656;
	gds_dsql_var_conflict                = 335544656;
	isc_dsql_no_blob_array               = 335544657;
	gds_dsql_no_blob_array               = 335544657;
	isc_dsql_base_table                  = 335544658;
	gds_dsql_base_table                  = 335544658;
	isc_duplicate_base_table             = 335544659;
	gds_duplicate_base_table             = 335544659;
	isc_view_alias                       = 335544660;
	gds_view_alias                       = 335544660;
	isc_index_root_page_full             = 335544661;
	gds_index_root_page_full             = 335544661;
	isc_dsql_blob_type_unknown           = 335544662;
	gds_dsql_blob_type_unknown           = 335544662;
	isc_req_max_clones_exceeded          = 335544663;
	gds_req_max_clones_exceeded          = 335544663;
	isc_dsql_duplicate_spec              = 335544664;
	gds_dsql_duplicate_spec              = 335544664;
	isc_unique_key_violation             = 335544665;
	gds_unique_key_violation             = 335544665;
	isc_srvr_version_too_old             = 335544666;
	gds_srvr_version_too_old             = 335544666;
	isc_drdb_completed_with_errs         = 335544667;
	gds_drdb_completed_with_errs         = 335544667;
	isc_dsql_procedure_use_err           = 335544668;
	gds_dsql_procedure_use_err           = 335544668;
	isc_dsql_count_mismatch              = 335544669;
	gds_dsql_count_mismatch              = 335544669;
	isc_blob_idx_err                     = 335544670;
	gds_blob_idx_err                     = 335544670;
	isc_array_idx_err                    = 335544671;
	gds_array_idx_err                    = 335544671;
	isc_key_field_err                    = 335544672;
	gds_key_field_err                    = 335544672;
	isc_no_delete                        = 335544673;
	gds_no_delete                        = 335544673;
	isc_del_last_field                   = 335544674;
	gds_del_last_field                   = 335544674;
	isc_sort_err                         = 335544675;
	gds_sort_err                         = 335544675;
	isc_sort_mem_err                     = 335544676;
	gds_sort_mem_err                     = 335544676;
	isc_version_err                      = 335544677;
	gds_version_err                      = 335544677;
	isc_inval_key_posn                   = 335544678;
	gds_inval_key_posn                   = 335544678;
	isc_no_segments_err                  = 335544679;
	gds_no_segments_err                  = 335544679;
	isc_crrp_data_err                    = 335544680;
	gds_crrp_data_err                    = 335544680;
	isc_rec_size_err                     = 335544681;
	gds_rec_size_err                     = 335544681;
	isc_dsql_field_ref                   = 335544682;
	gds_dsql_field_ref                   = 335544682;
	isc_req_depth_exceeded               = 335544683;
	gds_req_depth_exceeded               = 335544683;
	isc_no_field_access                  = 335544684;
	gds_no_field_access                  = 335544684;
	isc_no_dbkey                         = 335544685;
	gds_no_dbkey                         = 335544685;
	isc_jrn_format_err                   = 335544686;
	gds_jrn_format_err                   = 335544686;
	isc_jrn_file_full                    = 335544687;
	gds_jrn_file_full                    = 335544687;
	isc_dsql_open_cursor_request         = 335544688;
	gds_dsql_open_cursor_request         = 335544688;
	isc_ib_error                         = 335544689;
	gds_ib_error                         = 335544689;
	isc_cache_redef                      = 335544690;
	gds_cache_redef                      = 335544690;
	isc_cache_too_small                  = 335544691;
	gds_cache_too_small                  = 335544691;
	isc_log_redef                        = 335544692;
	gds_log_redef                        = 335544692;
	isc_log_too_small                    = 335544693;
	gds_log_too_small                    = 335544693;
	isc_partition_too_small              = 335544694;
	gds_partition_too_small              = 335544694;
	isc_partition_not_supp               = 335544695;
	gds_partition_not_supp               = 335544695;
	isc_log_length_spec                  = 335544696;
	gds_log_length_spec                  = 335544696;
	isc_precision_err                    = 335544697;
	gds_precision_err                    = 335544697;
	isc_scale_nogt                       = 335544698;
	gds_scale_nogt                       = 335544698;
	isc_expec_short                      = 335544699;
	gds_expec_short                      = 335544699;
	isc_expec_long                       = 335544700;
	gds_expec_long                       = 335544700;
	isc_expec_ushort                     = 335544701;
	gds_expec_ushort                     = 335544701;
	isc_escape_invalid                   = 335544702;
	gds_escape_invalid                   = 335544702;
	isc_svcnoexe                         = 335544703;
	gds_svcnoexe                         = 335544703;
	isc_net_lookup_err                   = 335544704;
	gds_net_lookup_err                   = 335544704;
	isc_service_unknown                  = 335544705;
	gds_service_unknown                  = 335544705;
	isc_host_unknown                     = 335544706;
	gds_host_unknown                     = 335544706;
	isc_grant_nopriv_on_base             = 335544707;
	gds_grant_nopriv_on_base             = 335544707;
	isc_dyn_fld_ambiguous                = 335544708;
	gds_dyn_fld_ambiguous                = 335544708;
	isc_dsql_agg_ref_err                 = 335544709;
	gds_dsql_agg_ref_err                 = 335544709;
	isc_complex_view                     = 335544710;
	gds_complex_view                     = 335544710;
	isc_unprepared_stmt                  = 335544711;
	gds_unprepared_stmt                  = 335544711;
	isc_expec_positive                   = 335544712;
	gds_expec_positive                   = 335544712;
	isc_dsql_sqlda_value_err             = 335544713;
	gds_dsql_sqlda_value_err             = 335544713;
	isc_invalid_array_id                 = 335544714;
	gds_invalid_array_id                 = 335544714;
	isc_extfile_uns_op                   = 335544715;
	gds_extfile_uns_op                   = 335544715;
	isc_svc_in_use                       = 335544716;
	gds_svc_in_use                       = 335544716;
	isc_err_stack_limit                  = 335544717;
	gds_err_stack_limit                  = 335544717;
	isc_invalid_key                      = 335544718;
	gds_invalid_key                      = 335544718;
	isc_net_init_error                   = 335544719;
	gds_net_init_error                   = 335544719;
	isc_loadlib_failure                  = 335544720;
	gds_loadlib_failure                  = 335544720;
	isc_network_error                    = 335544721;
	gds_network_error                    = 335544721;
	isc_net_connect_err                  = 335544722;
	gds_net_connect_err                  = 335544722;
	isc_net_connect_listen_err           = 335544723;
	gds_net_connect_listen_err           = 335544723;
	isc_net_event_connect_err            = 335544724;
	gds_net_event_connect_err            = 335544724;
	isc_net_event_listen_err             = 335544725;
	gds_net_event_listen_err             = 335544725;
	isc_net_read_err                     = 335544726;
	gds_net_read_err                     = 335544726;
	isc_net_write_err                    = 335544727;
	gds_net_write_err                    = 335544727;
	isc_integ_index_deactivate           = 335544728;
	gds_integ_index_deactivate           = 335544728;
	isc_integ_deactivate_primary         = 335544729;
	gds_integ_deactivate_primary         = 335544729;
	isc_cse_not_supported                = 335544730;
	gds_cse_not_supported                = 335544730;
	isc_tra_must_sweep                   = 335544731;
	gds_tra_must_sweep                   = 335544731;
	isc_unsupported_network_drive        = 335544732;
	gds_unsupported_network_drive        = 335544732;
	isc_io_create_err                    = 335544733;
	gds_io_create_err                    = 335544733;
	isc_io_open_err                      = 335544734;
	gds_io_open_err                      = 335544734;
	isc_io_close_err                     = 335544735;
	gds_io_close_err                     = 335544735;
	isc_io_read_err                      = 335544736;
	gds_io_read_err                      = 335544736;
	isc_io_write_err                     = 335544737;
	gds_io_write_err                     = 335544737;
	isc_io_delete_err                    = 335544738;
	gds_io_delete_err                    = 335544738;
	isc_io_access_err                    = 335544739;
	gds_io_access_err                    = 335544739;
	isc_udf_exception                    = 335544740;
	gds_udf_exception                    = 335544740;
	isc_lost_db_connection               = 335544741;
	gds_lost_db_connection               = 335544741;
	isc_no_write_user_priv               = 335544742;
	gds_no_write_user_priv               = 335544742;
	isc_token_too_long                   = 335544743;
	gds_token_too_long                   = 335544743;
	isc_max_att_exceeded                 = 335544744;
	gds_max_att_exceeded                 = 335544744;
	isc_login_same_as_role_name          = 335544745;
	gds_login_same_as_role_name          = 335544745;
	isc_reftable_requires_pk             = 335544746;
	gds_reftable_requires_pk             = 335544746;
	isc_usrname_too_long                 = 335544747;
	gds_usrname_too_long                 = 335544747;
	isc_password_too_long                = 335544748;
	gds_password_too_long                = 335544748;
	isc_usrname_required                 = 335544749;
	gds_usrname_required                 = 335544749;
	isc_password_required                = 335544750;
	gds_password_required                = 335544750;
	isc_bad_protocol                     = 335544751;
	gds_bad_protocol                     = 335544751;
	isc_dup_usrname_found                = 335544752;
	gds_dup_usrname_found                = 335544752;
	isc_usrname_not_found                = 335544753;
	gds_usrname_not_found                = 335544753;
	isc_error_adding_sec_record          = 335544754;
	gds_error_adding_sec_record          = 335544754;
	isc_error_modifying_sec_record       = 335544755;
	gds_error_modifying_sec_record       = 335544755;
	isc_error_deleting_sec_record        = 335544756;
	gds_error_deleting_sec_record        = 335544756;
	isc_error_updating_sec_db            = 335544757;
	gds_error_updating_sec_db            = 335544757;
	isc_sort_rec_size_err                = 335544758;
	gds_sort_rec_size_err                = 335544758;
	isc_bad_default_value                = 335544759;
	gds_bad_default_value                = 335544759;
	isc_invalid_clause                   = 335544760;
	gds_invalid_clause                   = 335544760;
	isc_too_many_handles                 = 335544761;
	gds_too_many_handles                 = 335544761;
	isc_optimizer_blk_exc                = 335544762;
	gds_optimizer_blk_exc                = 335544762;
	isc_invalid_string_constant          = 335544763;
	gds_invalid_string_constant          = 335544763;
	isc_transitional_date                = 335544764;
	gds_transitional_date                = 335544764;
	isc_read_only_database               = 335544765;
	gds_read_only_database               = 335544765;
	isc_must_be_dialect_2_and_up         = 335544766;
	gds_must_be_dialect_2_and_up         = 335544766;
	isc_blob_filter_exception            = 335544767;
	gds_blob_filter_exception            = 335544767;
	isc_exception_access_violation       = 335544768;
	gds_exception_access_violation       = 335544768;
	isc_exception_datatype_missalignment = 335544769;
	gds_exception_datatype_missalignment = 335544769;
	isc_exception_array_bounds_exceeded  = 335544770;
	gds_exception_array_bounds_exceeded  = 335544770;
	isc_exception_float_denormal_operand = 335544771;
	gds_exception_float_denormal_operand = 335544771;
	isc_exception_float_divide_by_zero   = 335544772;
	gds_exception_float_divide_by_zero   = 335544772;
	isc_exception_float_inexact_result   = 335544773;
	gds_exception_float_inexact_result   = 335544773;
	isc_exception_float_invalid_operand  = 335544774;
	gds_exception_float_invalid_operand  = 335544774;
	isc_exception_float_overflow         = 335544775;
	gds_exception_float_overflow         = 335544775;
	isc_exception_float_stack_check      = 335544776;
	gds_exception_float_stack_check      = 335544776;
	isc_exception_float_underflow        = 335544777;
	gds_exception_float_underflow        = 335544777;
	isc_exception_integer_divide_by_zero = 335544778;
	gds_exception_integer_divide_by_zero = 335544778;
	isc_exception_integer_overflow       = 335544779;
	gds_exception_integer_overflow       = 335544779;
	isc_exception_unknown                = 335544780;
	gds_exception_unknown                = 335544780;
	isc_exception_stack_overflow         = 335544781;
	gds_exception_stack_overflow         = 335544781;
	isc_exception_sigsegv                = 335544782;
	gds_exception_sigsegv                = 335544782;
	isc_exception_sigill                 = 335544783;
	gds_exception_sigill                 = 335544783;
	isc_exception_sigbus                 = 335544784;
	gds_exception_sigbus                 = 335544784;
	isc_exception_sigfpe                 = 335544785;
	gds_exception_sigfpe                 = 335544785;
	isc_ext_file_delete                  = 335544786;
	gds_ext_file_delete                  = 335544786;
	isc_ext_file_modify                  = 335544787;
	gds_ext_file_modify                  = 335544787;
	isc_adm_task_denied                  = 335544788;
	gds_adm_task_denied                  = 335544788;
	isc_extract_input_mismatch           = 335544789;
	gds_extract_input_mismatch           = 335544789;
	isc_insufficient_svc_privileges      = 335544790;
	gds_insufficient_svc_privileges      = 335544790;
	isc_file_in_use                      = 335544791;
	gds_file_in_use                      = 335544791;
	isc_service_att_err                  = 335544792;
	gds_service_att_err                  = 335544792;
	isc_ddl_not_allowed_by_db_sql_dial   = 335544793;
	gds_ddl_not_allowed_by_db_sql_dial   = 335544793;
	isc_cancelled                        = 335544794;
	gds_cancelled                        = 335544794;
	isc_unexp_spb_form                   = 335544795;
	gds_unexp_spb_form                   = 335544795;
	isc_sql_dialect_datatype_unsupport   = 335544796;
	gds_sql_dialect_datatype_unsupport   = 335544796;
	isc_svcnouser                        = 335544797;
	gds_svcnouser                        = 335544797;
	isc_depend_on_uncommitted_rel        = 335544798;
	gds_depend_on_uncommitted_rel        = 335544798;
	isc_svc_name_missing                 = 335544799;
	gds_svc_name_missing                 = 335544799;
	isc_too_many_contexts                = 335544800;
	gds_too_many_contexts                = 335544800;
	isc_datype_notsup                    = 335544801;
	gds_datype_notsup                    = 335544801;
	isc_dialect_reset_warning            = 335544802;
	gds_dialect_reset_warning            = 335544802;
	isc_dialect_not_changed              = 335544803;
	gds_dialect_not_changed              = 335544803;
	isc_database_create_failed           = 335544804;
	gds_database_create_failed           = 335544804;
	isc_inv_dialect_specified            = 335544805;
	gds_inv_dialect_specified            = 335544805;
	isc_valid_db_dialects                = 335544806;
	gds_valid_db_dialects                = 335544806;
	isc_sqlwarn                          = 335544807;
	gds_sqlwarn                          = 335544807;
	isc_dtype_renamed                    = 335544808;
	gds_dtype_renamed                    = 335544808;
	isc_extern_func_dir_error            = 335544809;
	gds_extern_func_dir_error            = 335544809;
	isc_date_range_exceeded              = 335544810;
	gds_date_range_exceeded              = 335544810;
	isc_inv_client_dialect_specified     = 335544811;
	gds_inv_client_dialect_specified     = 335544811;
	isc_valid_client_dialects            = 335544812;
	gds_valid_client_dialects            = 335544812;
	isc_optimizer_between_err            = 335544813;
	gds_optimizer_between_err            = 335544813;
	isc_service_not_supported            = 335544814;
	gds_service_not_supported            = 335544814;
	isc_generator_name                   = 335544815;
	gds_generator_name                   = 335544815;
	isc_udf_name                         = 335544816;
	gds_udf_name                         = 335544816;
	isc_bad_limit_param                  = 335544817;
	gds_bad_limit_param                  = 335544817;
	isc_bad_skip_param                   = 335544818;
	gds_bad_skip_param                   = 335544818;
	isc_io_32bit_exceeded_err            = 335544819;
	gds_io_32bit_exceeded_err            = 335544819;
	isc_invalid_savepoint                = 335544820;
	gds_invalid_savepoint                = 335544820;
	isc_dsql_column_pos_err              = 335544821;
	gds_dsql_column_pos_err              = 335544821;
	isc_dsql_agg_where_err               = 335544822;
	gds_dsql_agg_where_err               = 335544822;
	isc_dsql_agg_group_err               = 335544823;
	gds_dsql_agg_group_err               = 335544823;
	isc_dsql_agg_column_err              = 335544824;
	gds_dsql_agg_column_err              = 335544824;
	isc_dsql_agg_having_err              = 335544825;
	gds_dsql_agg_having_err              = 335544825;
	isc_dsql_agg_nested_err              = 335544826;
	gds_dsql_agg_nested_err              = 335544826;
	isc_exec_sql_invalid_arg             = 335544827;
	gds_exec_sql_invalid_arg             = 335544827;
	isc_exec_sql_invalid_req             = 335544828;
	gds_exec_sql_invalid_req             = 335544828;
	isc_exec_sql_invalid_var             = 335544829;
	gds_exec_sql_invalid_var             = 335544829;
	isc_exec_sql_max_call_exceeded       = 335544830;
	gds_exec_sql_max_call_exceeded       = 335544830;
	isc_conf_access_denied               = 335544831;
	gds_conf_access_denied               = 335544831;
	isc_wrong_backup_state               = 335544832;
	gds_wrong_backup_state               = 335544832;
	isc_wal_backup_err                   = 335544833;
	gds_wal_backup_err                   = 335544833;
	isc_cursor_not_open                  = 335544834;
	gds_cursor_not_open                  = 335544834;
	isc_bad_shutdown_mode                = 335544835;
	gds_bad_shutdown_mode                = 335544835;
	isc_concat_overflow                  = 335544836;
	gds_concat_overflow                  = 335544836;
	isc_bad_substring_offset             = 335544837;
	gds_bad_substring_offset             = 335544837;
	isc_foreign_key_target_doesnt_exist  = 335544838;
	gds_foreign_key_target_doesnt_exist  = 335544838;
	isc_foreign_key_references_present   = 335544839;
	gds_foreign_key_references_present   = 335544839;
	isc_no_update                        = 335544840;
	gds_no_update                        = 335544840;
	isc_cursor_already_open              = 335544841;
	gds_cursor_already_open              = 335544841;
	isc_stack_trace                      = 335544842;
	gds_stack_trace                      = 335544842;
	isc_ctx_var_not_found                = 335544843;
	gds_ctx_var_not_found                = 335544843;
	isc_ctx_namespace_invalid            = 335544844;
	gds_ctx_namespace_invalid            = 335544844;
	isc_ctx_too_big                      = 335544845;
	gds_ctx_too_big                      = 335544845;
	isc_ctx_bad_argument                 = 335544846;
	gds_ctx_bad_argument                 = 335544846;
	isc_identifier_too_long              = 335544847;
	gds_identifier_too_long              = 335544847;
	isc_except2                          = 335544848;
	gds_except2                          = 335544848;
	isc_malformed_string                 = 335544849;
	gds_malformed_string                 = 335544849;
	isc_prc_out_param_mismatch           = 335544850;
	gds_prc_out_param_mismatch           = 335544850;
	isc_command_end_err2                 = 335544851;
	gds_command_end_err2                 = 335544851;
	isc_partner_idx_incompat_type        = 335544852;
	gds_partner_idx_incompat_type        = 335544852;
	isc_bad_substring_length             = 335544853;
	gds_bad_substring_length             = 335544853;
	isc_charset_not_installed            = 335544854;
	gds_charset_not_installed            = 335544854;
	isc_collation_not_installed          = 335544855;
	gds_collation_not_installed          = 335544855;
	isc_att_shutdown                     = 335544856;
	gds_att_shutdown                     = 335544856;
	isc_blobtoobig                       = 335544857;
	gds_blobtoobig                       = 335544857;
	isc_must_have_phys_field             = 335544858;
	gds_must_have_phys_field             = 335544858;
	isc_invalid_time_precision           = 335544859;
	gds_invalid_time_precision           = 335544859;
	isc_blob_convert_error               = 335544860;
	gds_blob_convert_error               = 335544860;
	isc_array_convert_error              = 335544861;
	gds_array_convert_error              = 335544861;
	isc_record_lock_not_supp             = 335544862;
	gds_record_lock_not_supp             = 335544862;
	isc_partner_idx_not_found            = 335544863;
	gds_partner_idx_not_found            = 335544863;
	isc_tra_num_exc                      = 335544864;
	gds_tra_num_exc                      = 335544864;
	isc_field_disappeared                = 335544865;
	gds_field_disappeared                = 335544865;
	isc_met_wrong_gtt_scope              = 335544866;
	gds_met_wrong_gtt_scope              = 335544866;
	isc_subtype_for_internal_use         = 335544867;
	gds_subtype_for_internal_use         = 335544867;
	isc_illegal_prc_type                 = 335544868;
	gds_illegal_prc_type                 = 335544868;
	isc_invalid_sort_datatype            = 335544869;
	gds_invalid_sort_datatype            = 335544869;
	isc_collation_name                   = 335544870;
	gds_collation_name                   = 335544870;
	isc_domain_name                      = 335544871;
	gds_domain_name                      = 335544871;
	isc_domnotdef                        = 335544872;
	gds_domnotdef                        = 335544872;
	isc_array_max_dimensions             = 335544873;
	gds_array_max_dimensions             = 335544873;
	isc_max_db_per_trans_allowed         = 335544874;
	gds_max_db_per_trans_allowed         = 335544874;
	isc_bad_debug_format                 = 335544875;
	gds_bad_debug_format                 = 335544875;
	isc_bad_proc_BLR                     = 335544876;
	gds_bad_proc_BLR                     = 335544876;
	isc_key_too_big                      = 335544877;
	gds_key_too_big                      = 335544877;
	isc_concurrent_transaction           = 335544878;
	gds_concurrent_transaction           = 335544878;
	isc_not_valid_for_var                = 335544879;
	gds_not_valid_for_var                = 335544879;
	isc_not_valid_for                    = 335544880;
	gds_not_valid_for                    = 335544880;
	isc_need_difference                  = 335544881;
	gds_need_difference                  = 335544881;
	isc_long_login                       = 335544882;
	gds_long_login                       = 335544882;
	isc_fldnotdef2                       = 335544883;
	gds_fldnotdef2                       = 335544883;
	isc_invalid_similar_pattern          = 335544884;
	gds_invalid_similar_pattern          = 335544884;
	isc_bad_teb_form                     = 335544885;
	gds_bad_teb_form                     = 335544885;
	isc_tpb_multiple_txn_isolation       = 335544886;
	gds_tpb_multiple_txn_isolation       = 335544886;
	isc_tpb_reserv_before_table          = 335544887;
	gds_tpb_reserv_before_table          = 335544887;
	isc_tpb_multiple_spec                = 335544888;
	gds_tpb_multiple_spec                = 335544888;
	isc_tpb_option_without_rc            = 335544889;
	gds_tpb_option_without_rc            = 335544889;
	isc_tpb_conflicting_options          = 335544890;
	gds_tpb_conflicting_options          = 335544890;
	isc_tpb_reserv_missing_tlen          = 335544891;
	gds_tpb_reserv_missing_tlen          = 335544891;
	isc_tpb_reserv_long_tlen             = 335544892;
	gds_tpb_reserv_long_tlen             = 335544892;
	isc_tpb_reserv_missing_tname         = 335544893;
	gds_tpb_reserv_missing_tname         = 335544893;
	isc_tpb_reserv_corrup_tlen           = 335544894;
	gds_tpb_reserv_corrup_tlen           = 335544894;
	isc_tpb_reserv_null_tlen             = 335544895;
	gds_tpb_reserv_null_tlen             = 335544895;
	isc_tpb_reserv_relnotfound           = 335544896;
	gds_tpb_reserv_relnotfound           = 335544896;
	isc_tpb_reserv_baserelnotfound       = 335544897;
	gds_tpb_reserv_baserelnotfound       = 335544897;
	isc_tpb_missing_len                  = 335544898;
	gds_tpb_missing_len                  = 335544898;
	isc_tpb_missing_value                = 335544899;
	gds_tpb_missing_value                = 335544899;
	isc_tpb_corrupt_len                  = 335544900;
	gds_tpb_corrupt_len                  = 335544900;
	isc_tpb_null_len                     = 335544901;
	gds_tpb_null_len                     = 335544901;
	isc_tpb_overflow_len                 = 335544902;
	gds_tpb_overflow_len                 = 335544902;
	isc_tpb_invalid_value                = 335544903;
	gds_tpb_invalid_value                = 335544903;
	isc_tpb_reserv_stronger_wng          = 335544904;
	gds_tpb_reserv_stronger_wng          = 335544904;
	isc_tpb_reserv_stronger              = 335544905;
	gds_tpb_reserv_stronger              = 335544905;
	isc_tpb_reserv_max_recursion         = 335544906;
	gds_tpb_reserv_max_recursion         = 335544906;
	isc_tpb_reserv_virtualtbl            = 335544907;
	gds_tpb_reserv_virtualtbl            = 335544907;
	isc_tpb_reserv_systbl                = 335544908;
	gds_tpb_reserv_systbl                = 335544908;
	isc_tpb_reserv_temptbl               = 335544909;
	gds_tpb_reserv_temptbl               = 335544909;
	isc_tpb_readtxn_after_writelock      = 335544910;
	gds_tpb_readtxn_after_writelock      = 335544910;
	isc_tpb_writelock_after_readtxn      = 335544911;
	gds_tpb_writelock_after_readtxn      = 335544911;
	isc_time_range_exceeded              = 335544912;
	gds_time_range_exceeded              = 335544912;
	isc_datetime_range_exceeded          = 335544913;
	gds_datetime_range_exceeded          = 335544913;
	isc_string_truncation                = 335544914;
	gds_string_truncation                = 335544914;
	isc_blob_truncation                  = 335544915;
	gds_blob_truncation                  = 335544915;
	isc_numeric_out_of_range             = 335544916;
	gds_numeric_out_of_range             = 335544916;
	isc_shutdown_timeout                 = 335544917;
	gds_shutdown_timeout                 = 335544917;
	isc_att_handle_busy                  = 335544918;
	gds_att_handle_busy                  = 335544918;
	isc_bad_udf_freeit                   = 335544919;
	gds_bad_udf_freeit                   = 335544919;
	isc_eds_provider_not_found           = 335544920;
	gds_eds_provider_not_found           = 335544920;
	isc_eds_connection                   = 335544921;
	gds_eds_connection                   = 335544921;
	isc_eds_preprocess                   = 335544922;
	gds_eds_preprocess                   = 335544922;
	isc_eds_stmt_expected                = 335544923;
	gds_eds_stmt_expected                = 335544923;
	isc_eds_prm_name_expected            = 335544924;
	gds_eds_prm_name_expected            = 335544924;
	isc_eds_unclosed_comment             = 335544925;
	gds_eds_unclosed_comment             = 335544925;
	isc_eds_statement                    = 335544926;
	gds_eds_statement                    = 335544926;
	isc_eds_input_prm_mismatch           = 335544927;
	gds_eds_input_prm_mismatch           = 335544927;
	isc_eds_output_prm_mismatch          = 335544928;
	gds_eds_output_prm_mismatch          = 335544928;
	isc_eds_input_prm_not_set            = 335544929;
	gds_eds_input_prm_not_set            = 335544929;
	isc_too_big_blr                      = 335544930;
	gds_too_big_blr                      = 335544930;
	isc_montabexh                        = 335544931;
	gds_montabexh                        = 335544931;
	isc_modnotfound                      = 335544932;
	gds_modnotfound                      = 335544932;
	isc_nothing_to_cancel                = 335544933;
	gds_nothing_to_cancel                = 335544933;
	isc_ibutil_not_loaded                = 335544934;
	gds_ibutil_not_loaded                = 335544934;
	isc_circular_computed                = 335544935;
	gds_circular_computed                = 335544935;
	isc_psw_db_error                     = 335544936;
	gds_psw_db_error                     = 335544936;
	isc_invalid_type_datetime_op         = 335544937;
	gds_invalid_type_datetime_op         = 335544937;
	isc_onlycan_add_timetodate           = 335544938;
	gds_onlycan_add_timetodate           = 335544938;
	isc_onlycan_add_datetotime           = 335544939;
	gds_onlycan_add_datetotime           = 335544939;
	isc_onlycansub_tstampfromtstamp      = 335544940;
	gds_onlycansub_tstampfromtstamp      = 335544940;
	isc_onlyoneop_mustbe_tstamp          = 335544941;
	gds_onlyoneop_mustbe_tstamp          = 335544941;
	isc_invalid_extractpart_time         = 335544942;
	gds_invalid_extractpart_time         = 335544942;
	isc_invalid_extractpart_date         = 335544943;
	gds_invalid_extractpart_date         = 335544943;
	isc_invalidarg_extract               = 335544944;
	gds_invalidarg_extract               = 335544944;
	isc_sysf_argmustbe_exact             = 335544945;
	gds_sysf_argmustbe_exact             = 335544945;
	isc_sysf_argmustbe_exact_or_fp       = 335544946;
	gds_sysf_argmustbe_exact_or_fp       = 335544946;
	isc_sysf_argviolates_uuidtype        = 335544947;
	gds_sysf_argviolates_uuidtype        = 335544947;
	isc_sysf_argviolates_uuidlen         = 335544948;
	gds_sysf_argviolates_uuidlen         = 335544948;
	isc_sysf_argviolates_uuidfmt         = 335544949;
	gds_sysf_argviolates_uuidfmt         = 335544949;
	isc_sysf_argviolates_guidigits       = 335544950;
	gds_sysf_argviolates_guidigits       = 335544950;
	isc_sysf_invalid_addpart_time        = 335544951;
	gds_sysf_invalid_addpart_time        = 335544951;
	isc_sysf_invalid_add_datetime        = 335544952;
	gds_sysf_invalid_add_datetime        = 335544952;
	isc_sysf_invalid_addpart_dtime       = 335544953;
	gds_sysf_invalid_addpart_dtime       = 335544953;
	isc_sysf_invalid_add_dtime_rc        = 335544954;
	gds_sysf_invalid_add_dtime_rc        = 335544954;
	isc_sysf_invalid_diff_dtime          = 335544955;
	gds_sysf_invalid_diff_dtime          = 335544955;
	isc_sysf_invalid_timediff            = 335544956;
	gds_sysf_invalid_timediff            = 335544956;
	isc_sysf_invalid_tstamptimediff      = 335544957;
	gds_sysf_invalid_tstamptimediff      = 335544957;
	isc_sysf_invalid_datetimediff        = 335544958;
	gds_sysf_invalid_datetimediff        = 335544958;
	isc_sysf_invalid_diffpart            = 335544959;
	gds_sysf_invalid_diffpart            = 335544959;
	isc_sysf_argmustbe_positive          = 335544960;
	gds_sysf_argmustbe_positive          = 335544960;
	isc_sysf_basemustbe_positive         = 335544961;
	gds_sysf_basemustbe_positive         = 335544961;
	isc_sysf_argnmustbe_nonneg           = 335544962;
	gds_sysf_argnmustbe_nonneg           = 335544962;
	isc_sysf_argnmustbe_positive         = 335544963;
	gds_sysf_argnmustbe_positive         = 335544963;
	isc_sysf_invalid_zeropowneg          = 335544964;
	gds_sysf_invalid_zeropowneg          = 335544964;
	isc_sysf_invalid_negpowfp            = 335544965;
	gds_sysf_invalid_negpowfp            = 335544965;
	isc_sysf_invalid_scale               = 335544966;
	gds_sysf_invalid_scale               = 335544966;
	isc_sysf_argmustbe_nonneg            = 335544967;
	gds_sysf_argmustbe_nonneg            = 335544967;
	isc_sysf_binuuid_mustbe_str          = 335544968;
	gds_sysf_binuuid_mustbe_str          = 335544968;
	isc_sysf_binuuid_wrongsize           = 335544969;
	gds_sysf_binuuid_wrongsize           = 335544969;
	isc_missing_required_spb             = 335544970;
	gds_missing_required_spb             = 335544970;
	isc_net_server_shutdown              = 335544971;
	gds_net_server_shutdown              = 335544971;
	isc_bad_conn_str                     = 335544972;
	gds_bad_conn_str                     = 335544972;
	isc_bad_epb_form                     = 335544973;
	gds_bad_epb_form                     = 335544973;
	isc_no_threads                       = 335544974;
	gds_no_threads                       = 335544974;
	isc_net_event_connect_timeout        = 335544975;
	gds_net_event_connect_timeout        = 335544975;
	isc_sysf_argmustbe_nonzero           = 335544976;
	gds_sysf_argmustbe_nonzero           = 335544976;
	isc_sysf_argmustbe_range_inc1_1      = 335544977;
	gds_sysf_argmustbe_range_inc1_1      = 335544977;
	isc_sysf_argmustbe_gteq_one          = 335544978;
	gds_sysf_argmustbe_gteq_one          = 335544978;
	isc_sysf_argmustbe_range_exc1_1      = 335544979;
	gds_sysf_argmustbe_range_exc1_1      = 335544979;
	isc_internal_rejected_params         = 335544980;
	gds_internal_rejected_params         = 335544980;
	isc_sysf_fp_overflow                 = 335544981;
	gds_sysf_fp_overflow                 = 335544981;
	isc_udf_fp_overflow                  = 335544982;
	gds_udf_fp_overflow                  = 335544982;
	isc_udf_fp_nan                       = 335544983;
	gds_udf_fp_nan                       = 335544983;
	isc_instance_conflict                = 335544984;
	gds_instance_conflict                = 335544984;
	isc_out_of_temp_space                = 335544985;
	gds_out_of_temp_space                = 335544985;
	isc_eds_expl_tran_ctrl               = 335544986;
	gds_eds_expl_tran_ctrl               = 335544986;
	isc_no_trusted_spb                   = 335544987;
	gds_no_trusted_spb                   = 335544987;
	isc_package_name                     = 335544988;
	gds_package_name                     = 335544988;
	isc_cannot_make_not_null             = 335544989;
	gds_cannot_make_not_null             = 335544989;
	isc_feature_removed                  = 335544990;
	gds_feature_removed                  = 335544990;
	isc_view_name                        = 335544991;
	gds_view_name                        = 335544991;
	isc_lock_dir_access                  = 335544992;
	gds_lock_dir_access                  = 335544992;
	isc_invalid_fetch_option             = 335544993;
	gds_invalid_fetch_option             = 335544993;
	isc_bad_fun_BLR                      = 335544994;
	gds_bad_fun_BLR                      = 335544994;
	isc_func_pack_not_implemented        = 335544995;
	gds_func_pack_not_implemented        = 335544995;
	isc_proc_pack_not_implemented        = 335544996;
	gds_proc_pack_not_implemented        = 335544996;
	isc_eem_func_not_returned            = 335544997;
	gds_eem_func_not_returned            = 335544997;
	isc_eem_proc_not_returned            = 335544998;
	gds_eem_proc_not_returned            = 335544998;
	isc_eem_trig_not_returned            = 335544999;
	gds_eem_trig_not_returned            = 335544999;
	isc_eem_bad_plugin_ver               = 335545000;
	gds_eem_bad_plugin_ver               = 335545000;
	isc_eem_engine_notfound              = 335545001;
	gds_eem_engine_notfound              = 335545001;
	isc_attachment_in_use                = 335545002;
	gds_attachment_in_use                = 335545002;
	isc_transaction_in_use               = 335545003;
	gds_transaction_in_use               = 335545003;
	isc_pman_cannot_load_plugin          = 335545004;
	gds_pman_cannot_load_plugin          = 335545004;
	isc_pman_module_notfound             = 335545005;
	gds_pman_module_notfound             = 335545005;
	isc_pman_entrypoint_notfound         = 335545006;
	gds_pman_entrypoint_notfound         = 335545006;
	isc_pman_module_bad                  = 335545007;
	gds_pman_module_bad                  = 335545007;
	isc_pman_plugin_notfound             = 335545008;
	gds_pman_plugin_notfound             = 335545008;
	isc_sysf_invalid_trig_namespace      = 335545009;
	gds_sysf_invalid_trig_namespace      = 335545009;
	isc_unexpected_null                  = 335545010;
	gds_unexpected_null                  = 335545010;
	isc_type_notcompat_blob              = 335545011;
	gds_type_notcompat_blob              = 335545011;
	isc_invalid_date_val                 = 335545012;
	gds_invalid_date_val                 = 335545012;
	isc_invalid_time_val                 = 335545013;
	gds_invalid_time_val                 = 335545013;
	isc_invalid_timestamp_val            = 335545014;
	gds_invalid_timestamp_val            = 335545014;
	isc_invalid_index_val                = 335545015;
	gds_invalid_index_val                = 335545015;
	isc_formatted_exception              = 335545016;
	gds_formatted_exception              = 335545016;
	isc_async_active                     = 335545017;
	gds_async_active                     = 335545017;
	isc_private_function                 = 335545018;
	gds_private_function                 = 335545018;
	isc_private_procedure                = 335545019;
	gds_private_procedure                = 335545019;
	isc_request_outdated                 = 335545020;
	gds_request_outdated                 = 335545020;
	isc_bad_events_handle                = 335545021;
	gds_bad_events_handle                = 335545021;
	isc_cannot_copy_stmt                 = 335545022;
	gds_cannot_copy_stmt                 = 335545022;
	isc_invalid_boolean_usage            = 335545023;
	gds_invalid_boolean_usage            = 335545023;
	isc_sysf_argscant_both_be_zero       = 335545024;
	gds_sysf_argscant_both_be_zero       = 335545024;
	isc_spb_no_id                        = 335545025;
	gds_spb_no_id                        = 335545025;
	isc_ee_blr_mismatch_null             = 335545026;
	gds_ee_blr_mismatch_null             = 335545026;
	isc_ee_blr_mismatch_length           = 335545027;
	gds_ee_blr_mismatch_length           = 335545027;
	isc_ss_out_of_bounds                 = 335545028;
	gds_ss_out_of_bounds                 = 335545028;
	isc_missing_data_structures          = 335545029;
	gds_missing_data_structures          = 335545029;
	isc_protect_sys_tab                  = 335545030;
	gds_protect_sys_tab                  = 335545030;
	isc_libtommath_generic               = 335545031;
	gds_libtommath_generic               = 335545031;
	isc_wroblrver2                       = 335545032;
	gds_wroblrver2                       = 335545032;
	isc_trunc_limits                     = 335545033;
	gds_trunc_limits                     = 335545033;
	isc_info_access                      = 335545034;
	gds_info_access                      = 335545034;
	isc_svc_no_stdin                     = 335545035;
	gds_svc_no_stdin                     = 335545035;
	isc_svc_start_failed                 = 335545036;
	gds_svc_start_failed                 = 335545036;
	isc_svc_no_switches                  = 335545037;
	gds_svc_no_switches                  = 335545037;
	isc_svc_bad_size                     = 335545038;
	gds_svc_bad_size                     = 335545038;
	isc_no_crypt_plugin                  = 335545039;
	gds_no_crypt_plugin                  = 335545039;
	isc_cp_name_too_long                 = 335545040;
	gds_cp_name_too_long                 = 335545040;
	isc_cp_process_active                = 335545041;
	gds_cp_process_active                = 335545041;
	isc_cp_already_crypted               = 335545042;
	gds_cp_already_crypted               = 335545042;
	isc_decrypt_error                    = 335545043;
	gds_decrypt_error                    = 335545043;
	isc_no_providers                     = 335545044;
	gds_no_providers                     = 335545044;
	isc_null_spb                         = 335545045;
	gds_null_spb                         = 335545045;
	isc_max_args_exceeded                = 335545046;
	gds_max_args_exceeded                = 335545046;
	isc_ee_blr_mismatch_names_count      = 335545047;
	gds_ee_blr_mismatch_names_count      = 335545047;
	isc_ee_blr_mismatch_name_not_found   = 335545048;
	gds_ee_blr_mismatch_name_not_found   = 335545048;
	isc_bad_result_set                   = 335545049;
	gds_bad_result_set                   = 335545049;
	isc_wrong_message_length             = 335545050;
	gds_wrong_message_length             = 335545050;
	isc_no_output_format                 = 335545051;
	gds_no_output_format                 = 335545051;
	isc_item_finish                      = 335545052;
	gds_item_finish                      = 335545052;
	isc_miss_config                      = 335545053;
	gds_miss_config                      = 335545053;
	isc_conf_line                        = 335545054;
	gds_conf_line                        = 335545054;
	isc_conf_include                     = 335545055;
	gds_conf_include                     = 335545055;
	isc_include_depth                    = 335545056;
	gds_include_depth                    = 335545056;
	isc_include_miss                     = 335545057;
	gds_include_miss                     = 335545057;
	isc_protect_ownership                = 335545058;
	gds_protect_ownership                = 335545058;
	isc_badvarnum                        = 335545059;
	gds_badvarnum                        = 335545059;
	isc_sec_context                      = 335545060;
	gds_sec_context                      = 335545060;
	isc_multi_segment                    = 335545061;
	gds_multi_segment                    = 335545061;
	isc_login_changed                    = 335545062;
	gds_login_changed                    = 335545062;
	isc_auth_handshake_limit             = 335545063;
	gds_auth_handshake_limit             = 335545063;
	isc_wirecrypt_incompatible           = 335545064;
	gds_wirecrypt_incompatible           = 335545064;
	isc_miss_wirecrypt                   = 335545065;
	gds_miss_wirecrypt                   = 335545065;
	isc_wirecrypt_key                    = 335545066;
	gds_wirecrypt_key                    = 335545066;
	isc_wirecrypt_plugin                 = 335545067;
	gds_wirecrypt_plugin                 = 335545067;
	isc_secdb_name                       = 335545068;
	gds_secdb_name                       = 335545068;
	isc_auth_data                        = 335545069;
	gds_auth_data                        = 335545069;
	isc_auth_datalength                  = 335545070;
	gds_auth_datalength                  = 335545070;
	isc_info_unprepared_stmt             = 335545071;
	gds_info_unprepared_stmt             = 335545071;
	isc_idx_key_value                    = 335545072;
	gds_idx_key_value                    = 335545072;
	isc_forupdate_virtualtbl             = 335545073;
	gds_forupdate_virtualtbl             = 335545073;
	isc_forupdate_systbl                 = 335545074;
	gds_forupdate_systbl                 = 335545074;
	isc_forupdate_temptbl                = 335545075;
	gds_forupdate_temptbl                = 335545075;
	isc_cant_modify_sysobj               = 335545076;
	gds_cant_modify_sysobj               = 335545076;
	isc_server_misconfigured             = 335545077;
	gds_server_misconfigured             = 335545077;
	isc_alter_role                       = 335545078;
	gds_alter_role                       = 335545078;
	isc_map_already_exists               = 335545079;
	gds_map_already_exists               = 335545079;
	isc_map_not_exists                   = 335545080;
	gds_map_not_exists                   = 335545080;
	isc_map_load                         = 335545081;
	gds_map_load                         = 335545081;
	isc_map_aster                        = 335545082;
	gds_map_aster                        = 335545082;
	isc_map_multi                        = 335545083;
	gds_map_multi                        = 335545083;
	isc_map_undefined                    = 335545084;
	gds_map_undefined                    = 335545084;
	isc_baddpb_damaged_mode              = 335545085;
	gds_baddpb_damaged_mode              = 335545085;
	isc_baddpb_buffers_range             = 335545086;
	gds_baddpb_buffers_range             = 335545086;
	isc_baddpb_temp_buffers              = 335545087;
	gds_baddpb_temp_buffers              = 335545087;
	isc_map_nodb                         = 335545088;
	gds_map_nodb                         = 335545088;
	isc_map_notable                      = 335545089;
	gds_map_notable                      = 335545089;
	isc_miss_trusted_role                = 335545090;
	gds_miss_trusted_role                = 335545090;
	isc_set_invalid_role                 = 335545091;
	gds_set_invalid_role                 = 335545091;
	isc_cursor_not_positioned            = 335545092;
	gds_cursor_not_positioned            = 335545092;
	isc_dup_attribute                    = 335545093;
	gds_dup_attribute                    = 335545093;
	isc_dyn_no_priv                      = 335545094;
	gds_dyn_no_priv                      = 335545094;
	isc_dsql_cant_grant_option           = 335545095;
	gds_dsql_cant_grant_option           = 335545095;
	isc_read_conflict                    = 335545096;
	gds_read_conflict                    = 335545096;
	isc_crdb_load                        = 335545097;
	gds_crdb_load                        = 335545097;
	isc_crdb_nodb                        = 335545098;
	gds_crdb_nodb                        = 335545098;
	isc_crdb_notable                     = 335545099;
	gds_crdb_notable                     = 335545099;
	isc_interface_version_too_old        = 335545100;
	gds_interface_version_too_old        = 335545100;
	isc_fun_param_mismatch               = 335545101;
	gds_fun_param_mismatch               = 335545101;
	isc_savepoint_backout_err            = 335545102;
	gds_savepoint_backout_err            = 335545102;
	isc_domain_primary_key_notnull       = 335545103;
	gds_domain_primary_key_notnull       = 335545103;
	isc_invalid_attachment_charset       = 335545104;
	gds_invalid_attachment_charset       = 335545104;
	isc_map_down                         = 335545105;
	gds_map_down                         = 335545105;
	isc_login_error                      = 335545106;
	gds_login_error                      = 335545106;
	isc_already_opened                   = 335545107;
	gds_already_opened                   = 335545107;
	isc_bad_crypt_key                    = 335545108;
	gds_bad_crypt_key                    = 335545108;
	isc_encrypt_error                    = 335545109;
	gds_encrypt_error                    = 335545109;
	isc_max_idx_depth                    = 335545110;
	gds_max_idx_depth                    = 335545110;
	isc_wrong_prvlg                      = 335545111;
	gds_wrong_prvlg                      = 335545111;
	isc_miss_prvlg                       = 335545112;
	gds_miss_prvlg                       = 335545112;
	isc_crypt_checksum                   = 335545113;
	gds_crypt_checksum                   = 335545113;
	isc_not_dba                          = 335545114;
	gds_not_dba                          = 335545114;
	isc_no_cursor                        = 335545115;
	gds_no_cursor                        = 335545115;
	isc_dsql_window_incompat_frames      = 335545116;
	gds_dsql_window_incompat_frames      = 335545116;
	isc_dsql_window_range_multi_key      = 335545117;
	gds_dsql_window_range_multi_key      = 335545117;
	isc_dsql_window_range_inv_key_type   = 335545118;
	gds_dsql_window_range_inv_key_type   = 335545118;
	isc_dsql_window_frame_value_inv_type = 335545119;
	gds_dsql_window_frame_value_inv_type = 335545119;
	isc_window_frame_value_invalid       = 335545120;
	gds_window_frame_value_invalid       = 335545120;
	isc_dsql_window_not_found            = 335545121;
	gds_dsql_window_not_found            = 335545121;
	isc_dsql_window_cant_overr_part      = 335545122;
	gds_dsql_window_cant_overr_part      = 335545122;
	isc_dsql_window_cant_overr_order     = 335545123;
	gds_dsql_window_cant_overr_order     = 335545123;
	isc_dsql_window_cant_overr_frame     = 335545124;
	gds_dsql_window_cant_overr_frame     = 335545124;
	isc_dsql_window_duplicate            = 335545125;
	gds_dsql_window_duplicate            = 335545125;
	isc_sql_too_long                     = 335545126;
	gds_sql_too_long                     = 335545126;
	isc_cfg_stmt_timeout                 = 335545127;
	gds_cfg_stmt_timeout                 = 335545127;
	isc_att_stmt_timeout                 = 335545128;
	gds_att_stmt_timeout                 = 335545128;
	isc_req_stmt_timeout                 = 335545129;
	gds_req_stmt_timeout                 = 335545129;
	isc_att_shut_killed                  = 335545130;
	gds_att_shut_killed                  = 335545130;
	isc_att_shut_idle                    = 335545131;
	gds_att_shut_idle                    = 335545131;
	isc_att_shut_db_down                 = 335545132;
	gds_att_shut_db_down                 = 335545132;
	isc_att_shut_engine                  = 335545133;
	gds_att_shut_engine                  = 335545133;
	isc_overriding_without_identity      = 335545134;
	gds_overriding_without_identity      = 335545134;
	isc_overriding_system_invalid        = 335545135;
	gds_overriding_system_invalid        = 335545135;
	isc_overriding_user_invalid          = 335545136;
	gds_overriding_user_invalid          = 335545136;
	isc_overriding_missing               = 335545137;
	gds_overriding_missing               = 335545137;
	isc_decprecision_err                 = 335545138;
	gds_decprecision_err                 = 335545138;
	isc_decfloat_divide_by_zero          = 335545139;
	gds_decfloat_divide_by_zero          = 335545139;
	isc_decfloat_inexact_result          = 335545140;
	gds_decfloat_inexact_result          = 335545140;
	isc_decfloat_invalid_operation       = 335545141;
	gds_decfloat_invalid_operation       = 335545141;
	isc_decfloat_overflow                = 335545142;
	gds_decfloat_overflow                = 335545142;
	isc_decfloat_underflow               = 335545143;
	gds_decfloat_underflow               = 335545143;
	isc_subfunc_notdef                   = 335545144;
	gds_subfunc_notdef                   = 335545144;
	isc_subproc_notdef                   = 335545145;
	gds_subproc_notdef                   = 335545145;
	isc_subfunc_signat                   = 335545146;
	gds_subfunc_signat                   = 335545146;
	isc_subproc_signat                   = 335545147;
	gds_subproc_signat                   = 335545147;
	isc_subfunc_defvaldecl               = 335545148;
	gds_subfunc_defvaldecl               = 335545148;
	isc_subproc_defvaldecl               = 335545149;
	gds_subproc_defvaldecl               = 335545149;
	isc_subfunc_not_impl                 = 335545150;
	gds_subfunc_not_impl                 = 335545150;
	isc_subproc_not_impl                 = 335545151;
	gds_subproc_not_impl                 = 335545151;
	isc_sysf_invalid_hash_algorithm      = 335545152;
	gds_sysf_invalid_hash_algorithm      = 335545152;
	isc_expression_eval_index            = 335545153;
	gds_expression_eval_index            = 335545153;
	isc_invalid_decfloat_trap            = 335545154;
	gds_invalid_decfloat_trap            = 335545154;
	isc_invalid_decfloat_round           = 335545155;
	gds_invalid_decfloat_round           = 335545155;
	isc_sysf_invalid_first_last_part     = 335545156;
	gds_sysf_invalid_first_last_part     = 335545156;
	isc_sysf_invalid_date_timestamp      = 335545157;
	gds_sysf_invalid_date_timestamp      = 335545157;
	isc_precision_err2                   = 335545158;
	gds_precision_err2                   = 335545158;
	isc_bad_batch_handle                 = 335545159;
	gds_bad_batch_handle                 = 335545159;
	isc_intl_char                        = 335545160;
	gds_intl_char                        = 335545160;
	isc_null_block                       = 335545161;
	gds_null_block                       = 335545161;
	isc_mixed_info                       = 335545162;
	gds_mixed_info                       = 335545162;
	isc_unknown_info                     = 335545163;
	gds_unknown_info                     = 335545163;
	isc_bpb_version                      = 335545164;
	gds_bpb_version                      = 335545164;
	isc_user_manager                     = 335545165;
	gds_user_manager                     = 335545165;
	isc_icu_entrypoint                   = 335545166;
	gds_icu_entrypoint                   = 335545166;
	isc_icu_library                      = 335545167;
	gds_icu_library                      = 335545167;
	isc_metadata_name                    = 335545168;
	gds_metadata_name                    = 335545168;
	isc_tokens_parse                     = 335545169;
	gds_tokens_parse                     = 335545169;
	isc_iconv_open                       = 335545170;
	gds_iconv_open                       = 335545170;
	isc_batch_compl_range                = 335545171;
	gds_batch_compl_range                = 335545171;
	isc_batch_compl_detail               = 335545172;
	gds_batch_compl_detail               = 335545172;
	isc_deflate_init                     = 335545173;
	gds_deflate_init                     = 335545173;
	isc_inflate_init                     = 335545174;
	gds_inflate_init                     = 335545174;
	isc_big_segment                      = 335545175;
	gds_big_segment                      = 335545175;
	isc_batch_policy                     = 335545176;
	gds_batch_policy                     = 335545176;
	isc_batch_defbpb                     = 335545177;
	gds_batch_defbpb                     = 335545177;
	isc_batch_align                      = 335545178;
	gds_batch_align                      = 335545178;
	isc_multi_segment_dup                = 335545179;
	gds_multi_segment_dup                = 335545179;
	isc_non_plugin_protocol              = 335545180;
	gds_non_plugin_protocol              = 335545180;
	isc_message_format                   = 335545181;
	gds_message_format                   = 335545181;
	isc_batch_param_version              = 335545182;
	gds_batch_param_version              = 335545182;
	isc_batch_msg_long                   = 335545183;
	gds_batch_msg_long                   = 335545183;
	isc_batch_open                       = 335545184;
	gds_batch_open                       = 335545184;
	isc_batch_type                       = 335545185;
	gds_batch_type                       = 335545185;
	isc_batch_param                      = 335545186;
	gds_batch_param                      = 335545186;
	isc_batch_blobs                      = 335545187;
	gds_batch_blobs                      = 335545187;
	isc_batch_blob_append                = 335545188;
	gds_batch_blob_append                = 335545188;
	isc_batch_stream_align               = 335545189;
	gds_batch_stream_align               = 335545189;
	isc_batch_rpt_blob                   = 335545190;
	gds_batch_rpt_blob                   = 335545190;
	isc_batch_blob_buf                   = 335545191;
	gds_batch_blob_buf                   = 335545191;
	isc_batch_small_data                 = 335545192;
	gds_batch_small_data                 = 335545192;
	isc_batch_cont_bpb                   = 335545193;
	gds_batch_cont_bpb                   = 335545193;
	isc_batch_big_bpb                    = 335545194;
	gds_batch_big_bpb                    = 335545194;
	isc_batch_big_segment                = 335545195;
	gds_batch_big_segment                = 335545195;
	isc_batch_big_seg2                   = 335545196;
	gds_batch_big_seg2                   = 335545196;
	isc_batch_blob_id                    = 335545197;
	gds_batch_blob_id                    = 335545197;
	isc_batch_too_big                    = 335545198;
	gds_batch_too_big                    = 335545198;
	isc_num_literal                      = 335545199;
	gds_num_literal                      = 335545199;
	isc_map_event                        = 335545200;
	gds_map_event                        = 335545200;
	isc_map_overflow                     = 335545201;
	gds_map_overflow                     = 335545201;
	isc_hdr_overflow                     = 335545202;
	gds_hdr_overflow                     = 335545202;
	isc_vld_plugins                      = 335545203;
	gds_vld_plugins                      = 335545203;
	isc_db_crypt_key                     = 335545204;
	gds_db_crypt_key                     = 335545204;
	isc_no_keyholder_plugin              = 335545205;
	gds_no_keyholder_plugin              = 335545205;
	isc_ses_reset_err                    = 335545206;
	gds_ses_reset_err                    = 335545206;
	isc_ses_reset_open_trans             = 335545207;
	gds_ses_reset_open_trans             = 335545207;
	isc_ses_reset_warn                   = 335545208;
	gds_ses_reset_warn                   = 335545208;
	isc_ses_reset_tran_rollback          = 335545209;
	gds_ses_reset_tran_rollback          = 335545209;
	isc_plugin_name                      = 335545210;
	gds_plugin_name                      = 335545210;
	isc_parameter_name                   = 335545211;
	gds_parameter_name                   = 335545211;
	isc_file_starting_page_err           = 335545212;
	gds_file_starting_page_err           = 335545212;
	isc_invalid_timezone_offset          = 335545213;
	gds_invalid_timezone_offset          = 335545213;
	isc_invalid_timezone_region          = 335545214;
	gds_invalid_timezone_region          = 335545214;
	isc_invalid_timezone_id              = 335545215;
	gds_invalid_timezone_id              = 335545215;
	isc_tom_decode64len                  = 335545216;
	gds_tom_decode64len                  = 335545216;
	isc_tom_strblob                      = 335545217;
	gds_tom_strblob                      = 335545217;
	isc_tom_reg                          = 335545218;
	gds_tom_reg                          = 335545218;
	isc_tom_algorithm                    = 335545219;
	gds_tom_algorithm                    = 335545219;
	isc_tom_mode_miss                    = 335545220;
	gds_tom_mode_miss                    = 335545220;
	isc_tom_mode_bad                     = 335545221;
	gds_tom_mode_bad                     = 335545221;
	isc_tom_no_mode                      = 335545222;
	gds_tom_no_mode                      = 335545222;
	isc_tom_iv_miss                      = 335545223;
	gds_tom_iv_miss                      = 335545223;
	isc_tom_no_iv                        = 335545224;
	gds_tom_no_iv                        = 335545224;
	isc_tom_ctrtype_bad                  = 335545225;
	gds_tom_ctrtype_bad                  = 335545225;
	isc_tom_no_ctrtype                   = 335545226;
	gds_tom_no_ctrtype                   = 335545226;
	isc_tom_ctr_big                      = 335545227;
	gds_tom_ctr_big                      = 335545227;
	isc_tom_no_ctr                       = 335545228;
	gds_tom_no_ctr                       = 335545228;
	isc_tom_iv_length                    = 335545229;
	gds_tom_iv_length                    = 335545229;
	isc_tom_error                        = 335545230;
	gds_tom_error                        = 335545230;
	isc_tom_yarrow_start                 = 335545231;
	gds_tom_yarrow_start                 = 335545231;
	isc_tom_yarrow_setup                 = 335545232;
	gds_tom_yarrow_setup                 = 335545232;
	isc_tom_init_mode                    = 335545233;
	gds_tom_init_mode                    = 335545233;
	isc_tom_crypt_mode                   = 335545234;
	gds_tom_crypt_mode                   = 335545234;
	isc_tom_decrypt_mode                 = 335545235;
	gds_tom_decrypt_mode                 = 335545235;
	isc_tom_init_cip                     = 335545236;
	gds_tom_init_cip                     = 335545236;
	isc_tom_crypt_cip                    = 335545237;
	gds_tom_crypt_cip                    = 335545237;
	isc_tom_decrypt_cip                  = 335545238;
	gds_tom_decrypt_cip                  = 335545238;
	isc_tom_setup_cip                    = 335545239;
	gds_tom_setup_cip                    = 335545239;
	isc_tom_setup_chacha                 = 335545240;
	gds_tom_setup_chacha                 = 335545240;
	isc_tom_encode                       = 335545241;
	gds_tom_encode                       = 335545241;
	isc_tom_decode                       = 335545242;
	gds_tom_decode                       = 335545242;
	isc_tom_rsa_import                   = 335545243;
	gds_tom_rsa_import                   = 335545243;
	isc_tom_oaep                         = 335545244;
	gds_tom_oaep                         = 335545244;
	isc_tom_hash_bad                     = 335545245;
	gds_tom_hash_bad                     = 335545245;
	isc_tom_rsa_make                     = 335545246;
	gds_tom_rsa_make                     = 335545246;
	isc_tom_rsa_export                   = 335545247;
	gds_tom_rsa_export                   = 335545247;
	isc_tom_rsa_sign                     = 335545248;
	gds_tom_rsa_sign                     = 335545248;
	isc_tom_rsa_verify                   = 335545249;
	gds_tom_rsa_verify                   = 335545249;
	isc_tom_chacha_key                   = 335545250;
	gds_tom_chacha_key                   = 335545250;
	isc_bad_repl_handle                  = 335545251;
	gds_bad_repl_handle                  = 335545251;
	isc_tra_snapshot_does_not_exist      = 335545252;
	gds_tra_snapshot_does_not_exist      = 335545252;
	isc_eds_input_prm_not_used           = 335545253;
	gds_eds_input_prm_not_used           = 335545253;
	isc_effective_user                   = 335545254;
	gds_effective_user                   = 335545254;
	isc_invalid_time_zone_bind           = 335545255;
	gds_invalid_time_zone_bind           = 335545255;
	isc_invalid_decfloat_bind            = 335545256;
	gds_invalid_decfloat_bind            = 335545256;
	isc_odd_hex_len                      = 335545257;
	gds_odd_hex_len                      = 335545257;
	isc_invalid_hex_digit                = 335545258;
	gds_invalid_hex_digit                = 335545258;
	isc_bind_err                         = 335545259;
	gds_bind_err                         = 335545259;
	isc_bind_statement                   = 335545260;
	gds_bind_statement                   = 335545260;
	isc_bind_convert                     = 335545261;
	gds_bind_convert                     = 335545261;
	isc_cannot_update_old_blob           = 335545262;
	gds_cannot_update_old_blob           = 335545262;
	isc_cannot_read_new_blob             = 335545263;
	gds_cannot_read_new_blob             = 335545263;
	isc_dyn_no_create_priv               = 335545264;
	gds_dyn_no_create_priv               = 335545264;
	isc_suspend_without_returns          = 335545265;
	gds_suspend_without_returns          = 335545265;
	isc_truncate_warn                    = 335545266;
	gds_truncate_warn                    = 335545266;
	isc_truncate_monitor                 = 335545267;
	gds_truncate_monitor                 = 335545267;
	isc_truncate_context                 = 335545268;
	gds_truncate_context                 = 335545268;
	isc_merge_dup_update                 = 335545269;
	gds_merge_dup_update                 = 335545269;
	isc_wrong_page                       = 335545270;
	gds_wrong_page                       = 335545270;
	isc_repl_error                       = 335545271;
	gds_repl_error                       = 335545271;
	isc_ses_reset_failed                 = 335545272;
	gds_ses_reset_failed                 = 335545272;
	isc_block_size                       = 335545273;
	gds_block_size                       = 335545273;
	isc_tom_key_length                   = 335545274;
	gds_tom_key_length                   = 335545274;
	isc_inf_invalid_args                 = 335545275;
	gds_inf_invalid_args                 = 335545275;
	isc_sysf_invalid_null_empty          = 335545276;
	gds_sysf_invalid_null_empty          = 335545276;
	isc_gfix_db_name                     = 335740929;
	gds_gfix_db_name                     = 335740929;
	isc_gfix_invalid_sw                  = 335740930;
	gds_gfix_invalid_sw                  = 335740930;
	isc_gfix_incmp_sw                    = 335740932;
	gds_gfix_incmp_sw                    = 335740932;
	isc_gfix_replay_req                  = 335740933;
	gds_gfix_replay_req                  = 335740933;
	isc_gfix_pgbuf_req                   = 335740934;
	gds_gfix_pgbuf_req                   = 335740934;
	isc_gfix_val_req                     = 335740935;
	gds_gfix_val_req                     = 335740935;
	isc_gfix_pval_req                    = 335740936;
	gds_gfix_pval_req                    = 335740936;
	isc_gfix_trn_req                     = 335740937;
	gds_gfix_trn_req                     = 335740937;
	isc_gfix_full_req                    = 335740940;
	gds_gfix_full_req                    = 335740940;
	isc_gfix_usrname_req                 = 335740941;
	gds_gfix_usrname_req                 = 335740941;
	isc_gfix_pass_req                    = 335740942;
	gds_gfix_pass_req                    = 335740942;
	isc_gfix_subs_name                   = 335740943;
	gds_gfix_subs_name                   = 335740943;
	isc_gfix_wal_req                     = 335740944;
	gds_gfix_wal_req                     = 335740944;
	isc_gfix_sec_req                     = 335740945;
	gds_gfix_sec_req                     = 335740945;
	isc_gfix_nval_req                    = 335740946;
	gds_gfix_nval_req                    = 335740946;
	isc_gfix_type_shut                   = 335740947;
	gds_gfix_type_shut                   = 335740947;
	isc_gfix_retry                       = 335740948;
	gds_gfix_retry                       = 335740948;
	isc_gfix_retry_db                    = 335740951;
	gds_gfix_retry_db                    = 335740951;
	isc_gfix_exceed_max                  = 335740991;
	gds_gfix_exceed_max                  = 335740991;
	isc_gfix_corrupt_pool                = 335740992;
	gds_gfix_corrupt_pool                = 335740992;
	isc_gfix_mem_exhausted               = 335740993;
	gds_gfix_mem_exhausted               = 335740993;
	isc_gfix_bad_pool                    = 335740994;
	gds_gfix_bad_pool                    = 335740994;
	isc_gfix_trn_not_valid               = 335740995;
	gds_gfix_trn_not_valid               = 335740995;
	isc_gfix_unexp_eoi                   = 335741012;
	gds_gfix_unexp_eoi                   = 335741012;
	isc_gfix_recon_fail                  = 335741018;
	gds_gfix_recon_fail                  = 335741018;
	isc_gfix_trn_unknown                 = 335741036;
	gds_gfix_trn_unknown                 = 335741036;
	isc_gfix_mode_req                    = 335741038;
	gds_gfix_mode_req                    = 335741038;
	isc_gfix_pzval_req                   = 335741042;
	gds_gfix_pzval_req                   = 335741042;
	isc_dsql_dbkey_from_non_table        = 336003074;
	gds_dsql_dbkey_from_non_table        = 336003074;
	isc_dsql_transitional_numeric        = 336003075;
	gds_dsql_transitional_numeric        = 336003075;
	isc_dsql_dialect_warning_expr        = 336003076;
	gds_dsql_dialect_warning_expr        = 336003076;
	isc_sql_db_dialect_dtype_unsupport   = 336003077;
	gds_sql_db_dialect_dtype_unsupport   = 336003077;
	isc_sql_dialect_conflict_num         = 336003079;
	gds_sql_dialect_conflict_num         = 336003079;
	isc_dsql_warning_number_ambiguous    = 336003080;
	gds_dsql_warning_number_ambiguous    = 336003080;
	isc_dsql_warning_number_ambiguous1   = 336003081;
	gds_dsql_warning_number_ambiguous1   = 336003081;
	isc_dsql_warn_precision_ambiguous    = 336003082;
	gds_dsql_warn_precision_ambiguous    = 336003082;
	isc_dsql_warn_precision_ambiguous1   = 336003083;
	gds_dsql_warn_precision_ambiguous1   = 336003083;
	isc_dsql_warn_precision_ambiguous2   = 336003084;
	gds_dsql_warn_precision_ambiguous2   = 336003084;
	isc_dsql_ambiguous_field_name        = 336003085;
	gds_dsql_ambiguous_field_name        = 336003085;
	isc_dsql_udf_return_pos_err          = 336003086;
	gds_dsql_udf_return_pos_err          = 336003086;
	isc_dsql_invalid_label               = 336003087;
	gds_dsql_invalid_label               = 336003087;
	isc_dsql_datatypes_not_comparable    = 336003088;
	gds_dsql_datatypes_not_comparable    = 336003088;
	isc_dsql_cursor_invalid              = 336003089;
	gds_dsql_cursor_invalid              = 336003089;
	isc_dsql_cursor_redefined            = 336003090;
	gds_dsql_cursor_redefined            = 336003090;
	isc_dsql_cursor_not_found            = 336003091;
	gds_dsql_cursor_not_found            = 336003091;
	isc_dsql_cursor_exists               = 336003092;
	gds_dsql_cursor_exists               = 336003092;
	isc_dsql_cursor_rel_ambiguous        = 336003093;
	gds_dsql_cursor_rel_ambiguous        = 336003093;
	isc_dsql_cursor_rel_not_found        = 336003094;
	gds_dsql_cursor_rel_not_found        = 336003094;
	isc_dsql_cursor_not_open             = 336003095;
	gds_dsql_cursor_not_open             = 336003095;
	isc_dsql_type_not_supp_ext_tab       = 336003096;
	gds_dsql_type_not_supp_ext_tab       = 336003096;
	isc_dsql_feature_not_supported_ods   = 336003097;
	gds_dsql_feature_not_supported_ods   = 336003097;
	isc_primary_key_required             = 336003098;
	gds_primary_key_required             = 336003098;
	isc_upd_ins_doesnt_match_pk          = 336003099;
	gds_upd_ins_doesnt_match_pk          = 336003099;
	isc_upd_ins_doesnt_match_matching    = 336003100;
	gds_upd_ins_doesnt_match_matching    = 336003100;
	isc_upd_ins_with_complex_view        = 336003101;
	gds_upd_ins_with_complex_view        = 336003101;
	isc_dsql_incompatible_trigger_type   = 336003102;
	gds_dsql_incompatible_trigger_type   = 336003102;
	isc_dsql_db_trigger_type_cant_change = 336003103;
	gds_dsql_db_trigger_type_cant_change = 336003103;
	isc_dsql_record_version_table        = 336003104;
	gds_dsql_record_version_table        = 336003104;
	isc_dsql_invalid_sqlda_version       = 336003105;
	gds_dsql_invalid_sqlda_version       = 336003105;
	isc_dsql_sqlvar_index                = 336003106;
	gds_dsql_sqlvar_index                = 336003106;
	isc_dsql_no_sqlind                   = 336003107;
	gds_dsql_no_sqlind                   = 336003107;
	isc_dsql_no_sqldata                  = 336003108;
	gds_dsql_no_sqldata                  = 336003108;
	isc_dsql_no_input_sqlda              = 336003109;
	gds_dsql_no_input_sqlda              = 336003109;
	isc_dsql_no_output_sqlda             = 336003110;
	gds_dsql_no_output_sqlda             = 336003110;
	isc_dsql_wrong_param_num             = 336003111;
	gds_dsql_wrong_param_num             = 336003111;
	isc_dsql_invalid_drop_ss_clause      = 336003112;
	gds_dsql_invalid_drop_ss_clause      = 336003112;
	isc_upd_ins_cannot_default           = 336003113;
	gds_upd_ins_cannot_default           = 336003113;
	isc_dyn_filter_not_found             = 336068645;
	gds_dyn_filter_not_found             = 336068645;
	isc_dyn_func_not_found               = 336068649;
	gds_dyn_func_not_found               = 336068649;
	isc_dyn_index_not_found              = 336068656;
	gds_dyn_index_not_found              = 336068656;
	isc_dyn_view_not_found               = 336068662;
	gds_dyn_view_not_found               = 336068662;
	isc_dyn_domain_not_found             = 336068697;
	gds_dyn_domain_not_found             = 336068697;
	isc_dyn_cant_modify_auto_trig        = 336068717;
	gds_dyn_cant_modify_auto_trig        = 336068717;
	isc_dyn_dup_table                    = 336068740;
	gds_dyn_dup_table                    = 336068740;
	isc_dyn_proc_not_found               = 336068748;
	gds_dyn_proc_not_found               = 336068748;
	isc_dyn_exception_not_found          = 336068752;
	gds_dyn_exception_not_found          = 336068752;
	isc_dyn_proc_param_not_found         = 336068754;
	gds_dyn_proc_param_not_found         = 336068754;
	isc_dyn_trig_not_found               = 336068755;
	gds_dyn_trig_not_found               = 336068755;
	isc_dyn_charset_not_found            = 336068759;
	gds_dyn_charset_not_found            = 336068759;
	isc_dyn_collation_not_found          = 336068760;
	gds_dyn_collation_not_found          = 336068760;
	isc_dyn_role_not_found               = 336068763;
	gds_dyn_role_not_found               = 336068763;
	isc_dyn_name_longer                  = 336068767;
	gds_dyn_name_longer                  = 336068767;
	isc_dyn_column_does_not_exist        = 336068784;
	gds_dyn_column_does_not_exist        = 336068784;
	isc_dyn_role_does_not_exist          = 336068796;
	gds_dyn_role_does_not_exist          = 336068796;
	isc_dyn_no_grant_admin_opt           = 336068797;
	gds_dyn_no_grant_admin_opt           = 336068797;
	isc_dyn_user_not_role_member         = 336068798;
	gds_dyn_user_not_role_member         = 336068798;
	isc_dyn_delete_role_failed           = 336068799;
	gds_dyn_delete_role_failed           = 336068799;
	isc_dyn_grant_role_to_user           = 336068800;
	gds_dyn_grant_role_to_user           = 336068800;
	isc_dyn_inv_sql_role_name            = 336068801;
	gds_dyn_inv_sql_role_name            = 336068801;
	isc_dyn_dup_sql_role                 = 336068802;
	gds_dyn_dup_sql_role                 = 336068802;
	isc_dyn_kywd_spec_for_role           = 336068803;
	gds_dyn_kywd_spec_for_role           = 336068803;
	isc_dyn_roles_not_supported          = 336068804;
	gds_dyn_roles_not_supported          = 336068804;
	isc_dyn_domain_name_exists           = 336068812;
	gds_dyn_domain_name_exists           = 336068812;
	isc_dyn_field_name_exists            = 336068813;
	gds_dyn_field_name_exists            = 336068813;
	isc_dyn_dependency_exists            = 336068814;
	gds_dyn_dependency_exists            = 336068814;
	isc_dyn_dtype_invalid                = 336068815;
	gds_dyn_dtype_invalid                = 336068815;
	isc_dyn_char_fld_too_small           = 336068816;
	gds_dyn_char_fld_too_small           = 336068816;
	isc_dyn_invalid_dtype_conversion     = 336068817;
	gds_dyn_invalid_dtype_conversion     = 336068817;
	isc_dyn_dtype_conv_invalid           = 336068818;
	gds_dyn_dtype_conv_invalid           = 336068818;
	isc_dyn_zero_len_id                  = 336068820;
	gds_dyn_zero_len_id                  = 336068820;
	isc_dyn_gen_not_found                = 336068822;
	gds_dyn_gen_not_found                = 336068822;
	isc_max_coll_per_charset             = 336068829;
	gds_max_coll_per_charset             = 336068829;
	isc_invalid_coll_attr                = 336068830;
	gds_invalid_coll_attr                = 336068830;
	isc_dyn_wrong_gtt_scope              = 336068840;
	gds_dyn_wrong_gtt_scope              = 336068840;
	isc_dyn_coll_used_table              = 336068843;
	gds_dyn_coll_used_table              = 336068843;
	isc_dyn_coll_used_domain             = 336068844;
	gds_dyn_coll_used_domain             = 336068844;
	isc_dyn_cannot_del_syscoll           = 336068845;
	gds_dyn_cannot_del_syscoll           = 336068845;
	isc_dyn_cannot_del_def_coll          = 336068846;
	gds_dyn_cannot_del_def_coll          = 336068846;
	isc_dyn_table_not_found              = 336068849;
	gds_dyn_table_not_found              = 336068849;
	isc_dyn_coll_used_procedure          = 336068851;
	gds_dyn_coll_used_procedure          = 336068851;
	isc_dyn_scale_too_big                = 336068852;
	gds_dyn_scale_too_big                = 336068852;
	isc_dyn_precision_too_small          = 336068853;
	gds_dyn_precision_too_small          = 336068853;
	isc_dyn_miss_priv_warning            = 336068855;
	gds_dyn_miss_priv_warning            = 336068855;
	isc_dyn_ods_not_supp_feature         = 336068856;
	gds_dyn_ods_not_supp_feature         = 336068856;
	isc_dyn_cannot_addrem_computed       = 336068857;
	gds_dyn_cannot_addrem_computed       = 336068857;
	isc_dyn_no_empty_pw                  = 336068858;
	gds_dyn_no_empty_pw                  = 336068858;
	isc_dyn_dup_index                    = 336068859;
	gds_dyn_dup_index                    = 336068859;
	isc_dyn_package_not_found            = 336068864;
	gds_dyn_package_not_found            = 336068864;
	isc_dyn_schema_not_found             = 336068865;
	gds_dyn_schema_not_found             = 336068865;
	isc_dyn_cannot_mod_sysproc           = 336068866;
	gds_dyn_cannot_mod_sysproc           = 336068866;
	isc_dyn_cannot_mod_systrig           = 336068867;
	gds_dyn_cannot_mod_systrig           = 336068867;
	isc_dyn_cannot_mod_sysfunc           = 336068868;
	gds_dyn_cannot_mod_sysfunc           = 336068868;
	isc_dyn_invalid_ddl_proc             = 336068869;
	gds_dyn_invalid_ddl_proc             = 336068869;
	isc_dyn_invalid_ddl_trig             = 336068870;
	gds_dyn_invalid_ddl_trig             = 336068870;
	isc_dyn_funcnotdef_package           = 336068871;
	gds_dyn_funcnotdef_package           = 336068871;
	isc_dyn_procnotdef_package           = 336068872;
	gds_dyn_procnotdef_package           = 336068872;
	isc_dyn_funcsignat_package           = 336068873;
	gds_dyn_funcsignat_package           = 336068873;
	isc_dyn_procsignat_package           = 336068874;
	gds_dyn_procsignat_package           = 336068874;
	isc_dyn_defvaldecl_package_proc      = 336068875;
	gds_dyn_defvaldecl_package_proc      = 336068875;
	isc_dyn_package_body_exists          = 336068877;
	gds_dyn_package_body_exists          = 336068877;
	isc_dyn_invalid_ddl_func             = 336068878;
	gds_dyn_invalid_ddl_func             = 336068878;
	isc_dyn_newfc_oldsyntax              = 336068879;
	gds_dyn_newfc_oldsyntax              = 336068879;
	isc_dyn_func_param_not_found         = 336068886;
	gds_dyn_func_param_not_found         = 336068886;
	isc_dyn_routine_param_not_found      = 336068887;
	gds_dyn_routine_param_not_found      = 336068887;
	isc_dyn_routine_param_ambiguous      = 336068888;
	gds_dyn_routine_param_ambiguous      = 336068888;
	isc_dyn_coll_used_function           = 336068889;
	gds_dyn_coll_used_function           = 336068889;
	isc_dyn_domain_used_function         = 336068890;
	gds_dyn_domain_used_function         = 336068890;
	isc_dyn_alter_user_no_clause         = 336068891;
	gds_dyn_alter_user_no_clause         = 336068891;
	isc_dyn_duplicate_package_item       = 336068894;
	gds_dyn_duplicate_package_item       = 336068894;
	isc_dyn_cant_modify_sysobj           = 336068895;
	gds_dyn_cant_modify_sysobj           = 336068895;
	isc_dyn_cant_use_zero_increment      = 336068896;
	gds_dyn_cant_use_zero_increment      = 336068896;
	isc_dyn_cant_use_in_foreignkey       = 336068897;
	gds_dyn_cant_use_in_foreignkey       = 336068897;
	isc_dyn_defvaldecl_package_func      = 336068898;
	gds_dyn_defvaldecl_package_func      = 336068898;
	isc_dyn_cyclic_role                  = 336068900;
	gds_dyn_cyclic_role                  = 336068900;
	isc_dyn_cant_use_zero_inc_ident      = 336068904;
	gds_dyn_cant_use_zero_inc_ident      = 336068904;
	isc_dyn_no_ddl_grant_opt_priv        = 336068907;
	gds_dyn_no_ddl_grant_opt_priv        = 336068907;
	isc_dyn_no_grant_opt_priv            = 336068908;
	gds_dyn_no_grant_opt_priv            = 336068908;
	isc_dyn_func_not_exist               = 336068909;
	gds_dyn_func_not_exist               = 336068909;
	isc_dyn_proc_not_exist               = 336068910;
	gds_dyn_proc_not_exist               = 336068910;
	isc_dyn_pack_not_exist               = 336068911;
	gds_dyn_pack_not_exist               = 336068911;
	isc_dyn_trig_not_exist               = 336068912;
	gds_dyn_trig_not_exist               = 336068912;
	isc_dyn_view_not_exist               = 336068913;
	gds_dyn_view_not_exist               = 336068913;
	isc_dyn_rel_not_exist                = 336068914;
	gds_dyn_rel_not_exist                = 336068914;
	isc_dyn_exc_not_exist                = 336068915;
	gds_dyn_exc_not_exist                = 336068915;
	isc_dyn_gen_not_exist                = 336068916;
	gds_dyn_gen_not_exist                = 336068916;
	isc_dyn_fld_not_exist                = 336068917;
	gds_dyn_fld_not_exist                = 336068917;
	isc_gbak_unknown_switch              = 336330753;
	gds_gbak_unknown_switch              = 336330753;
	isc_gbak_page_size_missing           = 336330754;
	gds_gbak_page_size_missing           = 336330754;
	isc_gbak_page_size_toobig            = 336330755;
	gds_gbak_page_size_toobig            = 336330755;
	isc_gbak_redir_ouput_missing         = 336330756;
	gds_gbak_redir_ouput_missing         = 336330756;
	isc_gbak_switches_conflict           = 336330757;
	gds_gbak_switches_conflict           = 336330757;
	isc_gbak_unknown_device              = 336330758;
	gds_gbak_unknown_device              = 336330758;
	isc_gbak_no_protection               = 336330759;
	gds_gbak_no_protection               = 336330759;
	isc_gbak_page_size_not_allowed       = 336330760;
	gds_gbak_page_size_not_allowed       = 336330760;
	isc_gbak_multi_source_dest           = 336330761;
	gds_gbak_multi_source_dest           = 336330761;
	isc_gbak_filename_missing            = 336330762;
	gds_gbak_filename_missing            = 336330762;
	isc_gbak_dup_inout_names             = 336330763;
	gds_gbak_dup_inout_names             = 336330763;
	isc_gbak_inv_page_size               = 336330764;
	gds_gbak_inv_page_size               = 336330764;
	isc_gbak_db_specified                = 336330765;
	gds_gbak_db_specified                = 336330765;
	isc_gbak_db_exists                   = 336330766;
	gds_gbak_db_exists                   = 336330766;
	isc_gbak_unk_device                  = 336330767;
	gds_gbak_unk_device                  = 336330767;
	isc_gbak_blob_info_failed            = 336330772;
	gds_gbak_blob_info_failed            = 336330772;
	isc_gbak_unk_blob_item               = 336330773;
	gds_gbak_unk_blob_item               = 336330773;
	isc_gbak_get_seg_failed              = 336330774;
	gds_gbak_get_seg_failed              = 336330774;
	isc_gbak_close_blob_failed           = 336330775;
	gds_gbak_close_blob_failed           = 336330775;
	isc_gbak_open_blob_failed            = 336330776;
	gds_gbak_open_blob_failed            = 336330776;
	isc_gbak_put_blr_gen_id_failed       = 336330777;
	gds_gbak_put_blr_gen_id_failed       = 336330777;
	isc_gbak_unk_type                    = 336330778;
	gds_gbak_unk_type                    = 336330778;
	isc_gbak_comp_req_failed             = 336330779;
	gds_gbak_comp_req_failed             = 336330779;
	isc_gbak_start_req_failed            = 336330780;
	gds_gbak_start_req_failed            = 336330780;
	isc_gbak_rec_failed                  = 336330781;
	gds_gbak_rec_failed                  = 336330781;
	isc_gbak_rel_req_failed              = 336330782;
	gds_gbak_rel_req_failed              = 336330782;
	isc_gbak_db_info_failed              = 336330783;
	gds_gbak_db_info_failed              = 336330783;
	isc_gbak_no_db_desc                  = 336330784;
	gds_gbak_no_db_desc                  = 336330784;
	isc_gbak_db_create_failed            = 336330785;
	gds_gbak_db_create_failed            = 336330785;
	isc_gbak_decomp_len_error            = 336330786;
	gds_gbak_decomp_len_error            = 336330786;
	isc_gbak_tbl_missing                 = 336330787;
	gds_gbak_tbl_missing                 = 336330787;
	isc_gbak_blob_col_missing            = 336330788;
	gds_gbak_blob_col_missing            = 336330788;
	isc_gbak_create_blob_failed          = 336330789;
	gds_gbak_create_blob_failed          = 336330789;
	isc_gbak_put_seg_failed              = 336330790;
	gds_gbak_put_seg_failed              = 336330790;
	isc_gbak_rec_len_exp                 = 336330791;
	gds_gbak_rec_len_exp                 = 336330791;
	isc_gbak_inv_rec_len                 = 336330792;
	gds_gbak_inv_rec_len                 = 336330792;
	isc_gbak_exp_data_type               = 336330793;
	gds_gbak_exp_data_type               = 336330793;
	isc_gbak_gen_id_failed               = 336330794;
	gds_gbak_gen_id_failed               = 336330794;
	isc_gbak_unk_rec_type                = 336330795;
	gds_gbak_unk_rec_type                = 336330795;
	isc_gbak_inv_bkup_ver                = 336330796;
	gds_gbak_inv_bkup_ver                = 336330796;
	isc_gbak_missing_bkup_desc           = 336330797;
	gds_gbak_missing_bkup_desc           = 336330797;
	isc_gbak_string_trunc                = 336330798;
	gds_gbak_string_trunc                = 336330798;
	isc_gbak_cant_rest_record            = 336330799;
	gds_gbak_cant_rest_record            = 336330799;
	isc_gbak_send_failed                 = 336330800;
	gds_gbak_send_failed                 = 336330800;
	isc_gbak_no_tbl_name                 = 336330801;
	gds_gbak_no_tbl_name                 = 336330801;
	isc_gbak_unexp_eof                   = 336330802;
	gds_gbak_unexp_eof                   = 336330802;
	isc_gbak_db_format_too_old           = 336330803;
	gds_gbak_db_format_too_old           = 336330803;
	isc_gbak_inv_array_dim               = 336330804;
	gds_gbak_inv_array_dim               = 336330804;
	isc_gbak_xdr_len_expected            = 336330807;
	gds_gbak_xdr_len_expected            = 336330807;
	isc_gbak_open_bkup_error             = 336330817;
	gds_gbak_open_bkup_error             = 336330817;
	isc_gbak_open_error                  = 336330818;
	gds_gbak_open_error                  = 336330818;
	isc_gbak_missing_block_fac           = 336330934;
	gds_gbak_missing_block_fac           = 336330934;
	isc_gbak_inv_block_fac               = 336330935;
	gds_gbak_inv_block_fac               = 336330935;
	isc_gbak_block_fac_specified         = 336330936;
	gds_gbak_block_fac_specified         = 336330936;
	isc_gbak_missing_username            = 336330940;
	gds_gbak_missing_username            = 336330940;
	isc_gbak_missing_password            = 336330941;
	gds_gbak_missing_password            = 336330941;
	isc_gbak_missing_skipped_bytes       = 336330952;
	gds_gbak_missing_skipped_bytes       = 336330952;
	isc_gbak_inv_skipped_bytes           = 336330953;
	gds_gbak_inv_skipped_bytes           = 336330953;
	isc_gbak_err_restore_charset         = 336330965;
	gds_gbak_err_restore_charset         = 336330965;
	isc_gbak_err_restore_collation       = 336330967;
	gds_gbak_err_restore_collation       = 336330967;
	isc_gbak_read_error                  = 336330972;
	gds_gbak_read_error                  = 336330972;
	isc_gbak_write_error                 = 336330973;
	gds_gbak_write_error                 = 336330973;
	isc_gbak_db_in_use                   = 336330985;
	gds_gbak_db_in_use                   = 336330985;
	isc_gbak_sysmemex                    = 336330990;
	gds_gbak_sysmemex                    = 336330990;
	isc_gbak_restore_role_failed         = 336331002;
	gds_gbak_restore_role_failed         = 336331002;
	isc_gbak_role_op_missing             = 336331005;
	gds_gbak_role_op_missing             = 336331005;
	isc_gbak_page_buffers_missing        = 336331010;
	gds_gbak_page_buffers_missing        = 336331010;
	isc_gbak_page_buffers_wrong_param    = 336331011;
	gds_gbak_page_buffers_wrong_param    = 336331011;
	isc_gbak_page_buffers_restore        = 336331012;
	gds_gbak_page_buffers_restore        = 336331012;
	isc_gbak_inv_size                    = 336331014;
	gds_gbak_inv_size                    = 336331014;
	isc_gbak_file_outof_sequence         = 336331015;
	gds_gbak_file_outof_sequence         = 336331015;
	isc_gbak_join_file_missing           = 336331016;
	gds_gbak_join_file_missing           = 336331016;
	isc_gbak_stdin_not_supptd            = 336331017;
	gds_gbak_stdin_not_supptd            = 336331017;
	isc_gbak_stdout_not_supptd           = 336331018;
	gds_gbak_stdout_not_supptd           = 336331018;
	isc_gbak_bkup_corrupt                = 336331019;
	gds_gbak_bkup_corrupt                = 336331019;
	isc_gbak_unk_db_file_spec            = 336331020;
	gds_gbak_unk_db_file_spec            = 336331020;
	isc_gbak_hdr_write_failed            = 336331021;
	gds_gbak_hdr_write_failed            = 336331021;
	isc_gbak_disk_space_ex               = 336331022;
	gds_gbak_disk_space_ex               = 336331022;
	isc_gbak_size_lt_min                 = 336331023;
	gds_gbak_size_lt_min                 = 336331023;
	isc_gbak_svc_name_missing            = 336331025;
	gds_gbak_svc_name_missing            = 336331025;
	isc_gbak_not_ownr                    = 336331026;
	gds_gbak_not_ownr                    = 336331026;
	isc_gbak_mode_req                    = 336331031;
	gds_gbak_mode_req                    = 336331031;
	isc_gbak_just_data                   = 336331033;
	gds_gbak_just_data                   = 336331033;
	isc_gbak_data_only                   = 336331034;
	gds_gbak_data_only                   = 336331034;
	isc_gbak_missing_interval            = 336331078;
	gds_gbak_missing_interval            = 336331078;
	isc_gbak_wrong_interval              = 336331079;
	gds_gbak_wrong_interval              = 336331079;
	isc_gbak_verify_verbint              = 336331081;
	gds_gbak_verify_verbint              = 336331081;
	isc_gbak_option_only_restore         = 336331082;
	gds_gbak_option_only_restore         = 336331082;
	isc_gbak_option_only_backup          = 336331083;
	gds_gbak_option_only_backup          = 336331083;
	isc_gbak_option_conflict             = 336331084;
	gds_gbak_option_conflict             = 336331084;
	isc_gbak_param_conflict              = 336331085;
	gds_gbak_param_conflict              = 336331085;
	isc_gbak_option_repeated             = 336331086;
	gds_gbak_option_repeated             = 336331086;
	isc_gbak_max_dbkey_recursion         = 336331091;
	gds_gbak_max_dbkey_recursion         = 336331091;
	isc_gbak_max_dbkey_length            = 336331092;
	gds_gbak_max_dbkey_length            = 336331092;
	isc_gbak_invalid_metadata            = 336331093;
	gds_gbak_invalid_metadata            = 336331093;
	isc_gbak_invalid_data                = 336331094;
	gds_gbak_invalid_data                = 336331094;
	isc_gbak_inv_bkup_ver2               = 336331096;
	gds_gbak_inv_bkup_ver2               = 336331096;
	isc_gbak_db_format_too_old2          = 336331100;
	gds_gbak_db_format_too_old2          = 336331100;
	isc_dsql_too_old_ods                 = 336397205;
	gds_dsql_too_old_ods                 = 336397205;
	isc_dsql_table_not_found             = 336397206;
	gds_dsql_table_not_found             = 336397206;
	isc_dsql_view_not_found              = 336397207;
	gds_dsql_view_not_found              = 336397207;
	isc_dsql_line_col_error              = 336397208;
	gds_dsql_line_col_error              = 336397208;
	isc_dsql_unknown_pos                 = 336397209;
	gds_dsql_unknown_pos                 = 336397209;
	isc_dsql_no_dup_name                 = 336397210;
	gds_dsql_no_dup_name                 = 336397210;
	isc_dsql_too_many_values             = 336397211;
	gds_dsql_too_many_values             = 336397211;
	isc_dsql_no_array_computed           = 336397212;
	gds_dsql_no_array_computed           = 336397212;
	isc_dsql_implicit_domain_name        = 336397213;
	gds_dsql_implicit_domain_name        = 336397213;
	isc_dsql_only_can_subscript_array    = 336397214;
	gds_dsql_only_can_subscript_array    = 336397214;
	isc_dsql_max_sort_items              = 336397215;
	gds_dsql_max_sort_items              = 336397215;
	isc_dsql_max_group_items             = 336397216;
	gds_dsql_max_group_items             = 336397216;
	isc_dsql_conflicting_sort_field      = 336397217;
	gds_dsql_conflicting_sort_field      = 336397217;
	isc_dsql_derived_table_more_columns  = 336397218;
	gds_dsql_derived_table_more_columns  = 336397218;
	isc_dsql_derived_table_less_columns  = 336397219;
	gds_dsql_derived_table_less_columns  = 336397219;
	isc_dsql_derived_field_unnamed       = 336397220;
	gds_dsql_derived_field_unnamed       = 336397220;
	isc_dsql_derived_field_dup_name      = 336397221;
	gds_dsql_derived_field_dup_name      = 336397221;
	isc_dsql_derived_alias_select        = 336397222;
	gds_dsql_derived_alias_select        = 336397222;
	isc_dsql_derived_alias_field         = 336397223;
	gds_dsql_derived_alias_field         = 336397223;
	isc_dsql_auto_field_bad_pos          = 336397224;
	gds_dsql_auto_field_bad_pos          = 336397224;
	isc_dsql_cte_wrong_reference         = 336397225;
	gds_dsql_cte_wrong_reference         = 336397225;
	isc_dsql_cte_cycle                   = 336397226;
	gds_dsql_cte_cycle                   = 336397226;
	isc_dsql_cte_outer_join              = 336397227;
	gds_dsql_cte_outer_join              = 336397227;
	isc_dsql_cte_mult_references         = 336397228;
	gds_dsql_cte_mult_references         = 336397228;
	isc_dsql_cte_not_a_union             = 336397229;
	gds_dsql_cte_not_a_union             = 336397229;
	isc_dsql_cte_nonrecurs_after_recurs  = 336397230;
	gds_dsql_cte_nonrecurs_after_recurs  = 336397230;
	isc_dsql_cte_wrong_clause            = 336397231;
	gds_dsql_cte_wrong_clause            = 336397231;
	isc_dsql_cte_union_all               = 336397232;
	gds_dsql_cte_union_all               = 336397232;
	isc_dsql_cte_miss_nonrecursive       = 336397233;
	gds_dsql_cte_miss_nonrecursive       = 336397233;
	isc_dsql_cte_nested_with             = 336397234;
	gds_dsql_cte_nested_with             = 336397234;
	isc_dsql_col_more_than_once_using    = 336397235;
	gds_dsql_col_more_than_once_using    = 336397235;
	isc_dsql_unsupp_feature_dialect      = 336397236;
	gds_dsql_unsupp_feature_dialect      = 336397236;
	isc_dsql_cte_not_used                = 336397237;
	gds_dsql_cte_not_used                = 336397237;
	isc_dsql_col_more_than_once_view     = 336397238;
	gds_dsql_col_more_than_once_view     = 336397238;
	isc_dsql_unsupported_in_auto_trans   = 336397239;
	gds_dsql_unsupported_in_auto_trans   = 336397239;
	isc_dsql_eval_unknode                = 336397240;
	gds_dsql_eval_unknode                = 336397240;
	isc_dsql_agg_wrongarg                = 336397241;
	gds_dsql_agg_wrongarg                = 336397241;
	isc_dsql_agg2_wrongarg               = 336397242;
	gds_dsql_agg2_wrongarg               = 336397242;
	isc_dsql_nodateortime_pm_string      = 336397243;
	gds_dsql_nodateortime_pm_string      = 336397243;
	isc_dsql_invalid_datetime_subtract   = 336397244;
	gds_dsql_invalid_datetime_subtract   = 336397244;
	isc_dsql_invalid_dateortime_add      = 336397245;
	gds_dsql_invalid_dateortime_add      = 336397245;
	isc_dsql_invalid_type_minus_date     = 336397246;
	gds_dsql_invalid_type_minus_date     = 336397246;
	isc_dsql_nostring_addsub_dial3       = 336397247;
	gds_dsql_nostring_addsub_dial3       = 336397247;
	isc_dsql_invalid_type_addsub_dial3   = 336397248;
	gds_dsql_invalid_type_addsub_dial3   = 336397248;
	isc_dsql_invalid_type_multip_dial1   = 336397249;
	gds_dsql_invalid_type_multip_dial1   = 336397249;
	isc_dsql_nostring_multip_dial3       = 336397250;
	gds_dsql_nostring_multip_dial3       = 336397250;
	isc_dsql_invalid_type_multip_dial3   = 336397251;
	gds_dsql_invalid_type_multip_dial3   = 336397251;
	isc_dsql_mustuse_numeric_div_dial1   = 336397252;
	gds_dsql_mustuse_numeric_div_dial1   = 336397252;
	isc_dsql_nostring_div_dial3          = 336397253;
	gds_dsql_nostring_div_dial3          = 336397253;
	isc_dsql_invalid_type_div_dial3      = 336397254;
	gds_dsql_invalid_type_div_dial3      = 336397254;
	isc_dsql_nostring_neg_dial3          = 336397255;
	gds_dsql_nostring_neg_dial3          = 336397255;
	isc_dsql_invalid_type_neg            = 336397256;
	gds_dsql_invalid_type_neg            = 336397256;
	isc_dsql_max_distinct_items          = 336397257;
	gds_dsql_max_distinct_items          = 336397257;
	isc_dsql_alter_charset_failed        = 336397258;
	gds_dsql_alter_charset_failed        = 336397258;
	isc_dsql_comment_on_failed           = 336397259;
	gds_dsql_comment_on_failed           = 336397259;
	isc_dsql_create_func_failed          = 336397260;
	gds_dsql_create_func_failed          = 336397260;
	isc_dsql_alter_func_failed           = 336397261;
	gds_dsql_alter_func_failed           = 336397261;
	isc_dsql_create_alter_func_failed    = 336397262;
	gds_dsql_create_alter_func_failed    = 336397262;
	isc_dsql_drop_func_failed            = 336397263;
	gds_dsql_drop_func_failed            = 336397263;
	isc_dsql_recreate_func_failed        = 336397264;
	gds_dsql_recreate_func_failed        = 336397264;
	isc_dsql_create_proc_failed          = 336397265;
	gds_dsql_create_proc_failed          = 336397265;
	isc_dsql_alter_proc_failed           = 336397266;
	gds_dsql_alter_proc_failed           = 336397266;
	isc_dsql_create_alter_proc_failed    = 336397267;
	gds_dsql_create_alter_proc_failed    = 336397267;
	isc_dsql_drop_proc_failed            = 336397268;
	gds_dsql_drop_proc_failed            = 336397268;
	isc_dsql_recreate_proc_failed        = 336397269;
	gds_dsql_recreate_proc_failed        = 336397269;
	isc_dsql_create_trigger_failed       = 336397270;
	gds_dsql_create_trigger_failed       = 336397270;
	isc_dsql_alter_trigger_failed        = 336397271;
	gds_dsql_alter_trigger_failed        = 336397271;
	isc_dsql_create_alter_trigger_failed = 336397272;
	gds_dsql_create_alter_trigger_failed = 336397272;
	isc_dsql_drop_trigger_failed         = 336397273;
	gds_dsql_drop_trigger_failed         = 336397273;
	isc_dsql_recreate_trigger_failed     = 336397274;
	gds_dsql_recreate_trigger_failed     = 336397274;
	isc_dsql_create_collation_failed     = 336397275;
	gds_dsql_create_collation_failed     = 336397275;
	isc_dsql_drop_collation_failed       = 336397276;
	gds_dsql_drop_collation_failed       = 336397276;
	isc_dsql_create_domain_failed        = 336397277;
	gds_dsql_create_domain_failed        = 336397277;
	isc_dsql_alter_domain_failed         = 336397278;
	gds_dsql_alter_domain_failed         = 336397278;
	isc_dsql_drop_domain_failed          = 336397279;
	gds_dsql_drop_domain_failed          = 336397279;
	isc_dsql_create_except_failed        = 336397280;
	gds_dsql_create_except_failed        = 336397280;
	isc_dsql_alter_except_failed         = 336397281;
	gds_dsql_alter_except_failed         = 336397281;
	isc_dsql_create_alter_except_failed  = 336397282;
	gds_dsql_create_alter_except_failed  = 336397282;
	isc_dsql_recreate_except_failed      = 336397283;
	gds_dsql_recreate_except_failed      = 336397283;
	isc_dsql_drop_except_failed          = 336397284;
	gds_dsql_drop_except_failed          = 336397284;
	isc_dsql_create_sequence_failed      = 336397285;
	gds_dsql_create_sequence_failed      = 336397285;
	isc_dsql_create_table_failed         = 336397286;
	gds_dsql_create_table_failed         = 336397286;
	isc_dsql_alter_table_failed          = 336397287;
	gds_dsql_alter_table_failed          = 336397287;
	isc_dsql_drop_table_failed           = 336397288;
	gds_dsql_drop_table_failed           = 336397288;
	isc_dsql_recreate_table_failed       = 336397289;
	gds_dsql_recreate_table_failed       = 336397289;
	isc_dsql_create_pack_failed          = 336397290;
	gds_dsql_create_pack_failed          = 336397290;
	isc_dsql_alter_pack_failed           = 336397291;
	gds_dsql_alter_pack_failed           = 336397291;
	isc_dsql_create_alter_pack_failed    = 336397292;
	gds_dsql_create_alter_pack_failed    = 336397292;
	isc_dsql_drop_pack_failed            = 336397293;
	gds_dsql_drop_pack_failed            = 336397293;
	isc_dsql_recreate_pack_failed        = 336397294;
	gds_dsql_recreate_pack_failed        = 336397294;
	isc_dsql_create_pack_body_failed     = 336397295;
	gds_dsql_create_pack_body_failed     = 336397295;
	isc_dsql_drop_pack_body_failed       = 336397296;
	gds_dsql_drop_pack_body_failed       = 336397296;
	isc_dsql_recreate_pack_body_failed   = 336397297;
	gds_dsql_recreate_pack_body_failed   = 336397297;
	isc_dsql_create_view_failed          = 336397298;
	gds_dsql_create_view_failed          = 336397298;
	isc_dsql_alter_view_failed           = 336397299;
	gds_dsql_alter_view_failed           = 336397299;
	isc_dsql_create_alter_view_failed    = 336397300;
	gds_dsql_create_alter_view_failed    = 336397300;
	isc_dsql_recreate_view_failed        = 336397301;
	gds_dsql_recreate_view_failed        = 336397301;
	isc_dsql_drop_view_failed            = 336397302;
	gds_dsql_drop_view_failed            = 336397302;
	isc_dsql_drop_sequence_failed        = 336397303;
	gds_dsql_drop_sequence_failed        = 336397303;
	isc_dsql_recreate_sequence_failed    = 336397304;
	gds_dsql_recreate_sequence_failed    = 336397304;
	isc_dsql_drop_index_failed           = 336397305;
	gds_dsql_drop_index_failed           = 336397305;
	isc_dsql_drop_filter_failed          = 336397306;
	gds_dsql_drop_filter_failed          = 336397306;
	isc_dsql_drop_shadow_failed          = 336397307;
	gds_dsql_drop_shadow_failed          = 336397307;
	isc_dsql_drop_role_failed            = 336397308;
	gds_dsql_drop_role_failed            = 336397308;
	isc_dsql_drop_user_failed            = 336397309;
	gds_dsql_drop_user_failed            = 336397309;
	isc_dsql_create_role_failed          = 336397310;
	gds_dsql_create_role_failed          = 336397310;
	isc_dsql_alter_role_failed           = 336397311;
	gds_dsql_alter_role_failed           = 336397311;
	isc_dsql_alter_index_failed          = 336397312;
	gds_dsql_alter_index_failed          = 336397312;
	isc_dsql_alter_database_failed       = 336397313;
	gds_dsql_alter_database_failed       = 336397313;
	isc_dsql_create_shadow_failed        = 336397314;
	gds_dsql_create_shadow_failed        = 336397314;
	isc_dsql_create_filter_failed        = 336397315;
	gds_dsql_create_filter_failed        = 336397315;
	isc_dsql_create_index_failed         = 336397316;
	gds_dsql_create_index_failed         = 336397316;
	isc_dsql_create_user_failed          = 336397317;
	gds_dsql_create_user_failed          = 336397317;
	isc_dsql_alter_user_failed           = 336397318;
	gds_dsql_alter_user_failed           = 336397318;
	isc_dsql_grant_failed                = 336397319;
	gds_dsql_grant_failed                = 336397319;
	isc_dsql_revoke_failed               = 336397320;
	gds_dsql_revoke_failed               = 336397320;
	isc_dsql_cte_recursive_aggregate     = 336397321;
	gds_dsql_cte_recursive_aggregate     = 336397321;
	isc_dsql_mapping_failed              = 336397322;
	gds_dsql_mapping_failed              = 336397322;
	isc_dsql_alter_sequence_failed       = 336397323;
	gds_dsql_alter_sequence_failed       = 336397323;
	isc_dsql_create_generator_failed     = 336397324;
	gds_dsql_create_generator_failed     = 336397324;
	isc_dsql_set_generator_failed        = 336397325;
	gds_dsql_set_generator_failed        = 336397325;
	isc_dsql_wlock_simple                = 336397326;
	gds_dsql_wlock_simple                = 336397326;
	isc_dsql_firstskip_rows              = 336397327;
	gds_dsql_firstskip_rows              = 336397327;
	isc_dsql_wlock_aggregates            = 336397328;
	gds_dsql_wlock_aggregates            = 336397328;
	isc_dsql_wlock_conflict              = 336397329;
	gds_dsql_wlock_conflict              = 336397329;
	isc_dsql_max_exception_arguments     = 336397330;
	gds_dsql_max_exception_arguments     = 336397330;
	isc_dsql_string_byte_length          = 336397331;
	gds_dsql_string_byte_length          = 336397331;
	isc_dsql_string_char_length          = 336397332;
	gds_dsql_string_char_length          = 336397332;
	isc_dsql_max_nesting                 = 336397333;
	gds_dsql_max_nesting                 = 336397333;
	isc_dsql_recreate_user_failed        = 336397334;
	gds_dsql_recreate_user_failed        = 336397334;
	isc_gsec_cant_open_db                = 336723983;
	gds_gsec_cant_open_db                = 336723983;
	isc_gsec_switches_error              = 336723984;
	gds_gsec_switches_error              = 336723984;
	isc_gsec_no_op_spec                  = 336723985;
	gds_gsec_no_op_spec                  = 336723985;
	isc_gsec_no_usr_name                 = 336723986;
	gds_gsec_no_usr_name                 = 336723986;
	isc_gsec_err_add                     = 336723987;
	gds_gsec_err_add                     = 336723987;
	isc_gsec_err_modify                  = 336723988;
	gds_gsec_err_modify                  = 336723988;
	isc_gsec_err_find_mod                = 336723989;
	gds_gsec_err_find_mod                = 336723989;
	isc_gsec_err_rec_not_found           = 336723990;
	gds_gsec_err_rec_not_found           = 336723990;
	isc_gsec_err_delete                  = 336723991;
	gds_gsec_err_delete                  = 336723991;
	isc_gsec_err_find_del                = 336723992;
	gds_gsec_err_find_del                = 336723992;
	isc_gsec_err_find_disp               = 336723996;
	gds_gsec_err_find_disp               = 336723996;
	isc_gsec_inv_param                   = 336723997;
	gds_gsec_inv_param                   = 336723997;
	isc_gsec_op_specified                = 336723998;
	gds_gsec_op_specified                = 336723998;
	isc_gsec_pw_specified                = 336723999;
	gds_gsec_pw_specified                = 336723999;
	isc_gsec_uid_specified               = 336724000;
	gds_gsec_uid_specified               = 336724000;
	isc_gsec_gid_specified               = 336724001;
	gds_gsec_gid_specified               = 336724001;
	isc_gsec_proj_specified              = 336724002;
	gds_gsec_proj_specified              = 336724002;
	isc_gsec_org_specified               = 336724003;
	gds_gsec_org_specified               = 336724003;
	isc_gsec_fname_specified             = 336724004;
	gds_gsec_fname_specified             = 336724004;
	isc_gsec_mname_specified             = 336724005;
	gds_gsec_mname_specified             = 336724005;
	isc_gsec_lname_specified             = 336724006;
	gds_gsec_lname_specified             = 336724006;
	isc_gsec_inv_switch                  = 336724008;
	gds_gsec_inv_switch                  = 336724008;
	isc_gsec_amb_switch                  = 336724009;
	gds_gsec_amb_switch                  = 336724009;
	isc_gsec_no_op_specified             = 336724010;
	gds_gsec_no_op_specified             = 336724010;
	isc_gsec_params_not_allowed          = 336724011;
	gds_gsec_params_not_allowed          = 336724011;
	isc_gsec_incompat_switch             = 336724012;
	gds_gsec_incompat_switch             = 336724012;
	isc_gsec_inv_username                = 336724044;
	gds_gsec_inv_username                = 336724044;
	isc_gsec_inv_pw_length               = 336724045;
	gds_gsec_inv_pw_length               = 336724045;
	isc_gsec_db_specified                = 336724046;
	gds_gsec_db_specified                = 336724046;
	isc_gsec_db_admin_specified          = 336724047;
	gds_gsec_db_admin_specified          = 336724047;
	isc_gsec_db_admin_pw_specified       = 336724048;
	gds_gsec_db_admin_pw_specified       = 336724048;
	isc_gsec_sql_role_specified          = 336724049;
	gds_gsec_sql_role_specified          = 336724049;
	isc_gstat_unknown_switch             = 336920577;
	gds_gstat_unknown_switch             = 336920577;
	isc_gstat_retry                      = 336920578;
	gds_gstat_retry                      = 336920578;
	isc_gstat_wrong_ods                  = 336920579;
	gds_gstat_wrong_ods                  = 336920579;
	isc_gstat_unexpected_eof             = 336920580;
	gds_gstat_unexpected_eof             = 336920580;
	isc_gstat_open_err                   = 336920605;
	gds_gstat_open_err                   = 336920605;
	isc_gstat_read_err                   = 336920606;
	gds_gstat_read_err                   = 336920606;
	isc_gstat_sysmemex                   = 336920607;
	gds_gstat_sysmemex                   = 336920607;
	isc_fbsvcmgr_bad_am                  = 336986113;
	gds_fbsvcmgr_bad_am                  = 336986113;
	isc_fbsvcmgr_bad_wm                  = 336986114;
	gds_fbsvcmgr_bad_wm                  = 336986114;
	isc_fbsvcmgr_bad_rs                  = 336986115;
	gds_fbsvcmgr_bad_rs                  = 336986115;
	isc_fbsvcmgr_info_err                = 336986116;
	gds_fbsvcmgr_info_err                = 336986116;
	isc_fbsvcmgr_query_err               = 336986117;
	gds_fbsvcmgr_query_err               = 336986117;
	isc_fbsvcmgr_switch_unknown          = 336986118;
	gds_fbsvcmgr_switch_unknown          = 336986118;
	isc_fbsvcmgr_bad_sm                  = 336986159;
	gds_fbsvcmgr_bad_sm                  = 336986159;
	isc_fbsvcmgr_fp_open                 = 336986160;
	gds_fbsvcmgr_fp_open                 = 336986160;
	isc_fbsvcmgr_fp_read                 = 336986161;
	gds_fbsvcmgr_fp_read                 = 336986161;
	isc_fbsvcmgr_fp_empty                = 336986162;
	gds_fbsvcmgr_fp_empty                = 336986162;
	isc_fbsvcmgr_bad_arg                 = 336986164;
	gds_fbsvcmgr_bad_arg                 = 336986164;
	isc_fbsvcmgr_info_limbo              = 336986170;
	gds_fbsvcmgr_info_limbo              = 336986170;
	isc_fbsvcmgr_limbo_state             = 336986171;
	gds_fbsvcmgr_limbo_state             = 336986171;
	isc_fbsvcmgr_limbo_advise            = 336986172;
	gds_fbsvcmgr_limbo_advise            = 336986172;
	isc_fbsvcmgr_bad_rm                  = 336986173;
	gds_fbsvcmgr_bad_rm                  = 336986173;
	isc_utl_trusted_switch               = 337051649;
	gds_utl_trusted_switch               = 337051649;
	isc_nbackup_missing_param            = 337117213;
	gds_nbackup_missing_param            = 337117213;
	isc_nbackup_allowed_switches         = 337117214;
	gds_nbackup_allowed_switches         = 337117214;
	isc_nbackup_unknown_param            = 337117215;
	gds_nbackup_unknown_param            = 337117215;
	isc_nbackup_unknown_switch           = 337117216;
	gds_nbackup_unknown_switch           = 337117216;
	isc_nbackup_nofetchpw_svc            = 337117217;
	gds_nbackup_nofetchpw_svc            = 337117217;
	isc_nbackup_pwfile_error             = 337117218;
	gds_nbackup_pwfile_error             = 337117218;
	isc_nbackup_size_with_lock           = 337117219;
	gds_nbackup_size_with_lock           = 337117219;
	isc_nbackup_no_switch                = 337117220;
	gds_nbackup_no_switch                = 337117220;
	isc_nbackup_err_read                 = 337117223;
	gds_nbackup_err_read                 = 337117223;
	isc_nbackup_err_write                = 337117224;
	gds_nbackup_err_write                = 337117224;
	isc_nbackup_err_seek                 = 337117225;
	gds_nbackup_err_seek                 = 337117225;
	isc_nbackup_err_opendb               = 337117226;
	gds_nbackup_err_opendb               = 337117226;
	isc_nbackup_err_fadvice              = 337117227;
	gds_nbackup_err_fadvice              = 337117227;
	isc_nbackup_err_createdb             = 337117228;
	gds_nbackup_err_createdb             = 337117228;
	isc_nbackup_err_openbk               = 337117229;
	gds_nbackup_err_openbk               = 337117229;
	isc_nbackup_err_createbk             = 337117230;
	gds_nbackup_err_createbk             = 337117230;
	isc_nbackup_err_eofdb                = 337117231;
	gds_nbackup_err_eofdb                = 337117231;
	isc_nbackup_fixup_wrongstate         = 337117232;
	gds_nbackup_fixup_wrongstate         = 337117232;
	isc_nbackup_err_db                   = 337117233;
	gds_nbackup_err_db                   = 337117233;
	isc_nbackup_userpw_toolong           = 337117234;
	gds_nbackup_userpw_toolong           = 337117234;
	isc_nbackup_lostrec_db               = 337117235;
	gds_nbackup_lostrec_db               = 337117235;
	isc_nbackup_lostguid_db              = 337117236;
	gds_nbackup_lostguid_db              = 337117236;
	isc_nbackup_err_eofhdrdb             = 337117237;
	gds_nbackup_err_eofhdrdb             = 337117237;
	isc_nbackup_db_notlock               = 337117238;
	gds_nbackup_db_notlock               = 337117238;
	isc_nbackup_lostguid_bk              = 337117239;
	gds_nbackup_lostguid_bk              = 337117239;
	isc_nbackup_page_changed             = 337117240;
	gds_nbackup_page_changed             = 337117240;
	isc_nbackup_dbsize_inconsistent      = 337117241;
	gds_nbackup_dbsize_inconsistent      = 337117241;
	isc_nbackup_failed_lzbk              = 337117242;
	gds_nbackup_failed_lzbk              = 337117242;
	isc_nbackup_err_eofhdrbk             = 337117243;
	gds_nbackup_err_eofhdrbk             = 337117243;
	isc_nbackup_invalid_incbk            = 337117244;
	gds_nbackup_invalid_incbk            = 337117244;
	isc_nbackup_unsupvers_incbk          = 337117245;
	gds_nbackup_unsupvers_incbk          = 337117245;
	isc_nbackup_invlevel_incbk           = 337117246;
	gds_nbackup_invlevel_incbk           = 337117246;
	isc_nbackup_wrong_orderbk            = 337117247;
	gds_nbackup_wrong_orderbk            = 337117247;
	isc_nbackup_err_eofbk                = 337117248;
	gds_nbackup_err_eofbk                = 337117248;
	isc_nbackup_err_copy                 = 337117249;
	gds_nbackup_err_copy                 = 337117249;
	isc_nbackup_err_eofhdr_restdb        = 337117250;
	gds_nbackup_err_eofhdr_restdb        = 337117250;
	isc_nbackup_lostguid_l0bk            = 337117251;
	gds_nbackup_lostguid_l0bk            = 337117251;
	isc_nbackup_switchd_parameter        = 337117255;
	gds_nbackup_switchd_parameter        = 337117255;
	isc_nbackup_user_stop                = 337117257;
	gds_nbackup_user_stop                = 337117257;
	isc_nbackup_deco_parse               = 337117259;
	gds_nbackup_deco_parse               = 337117259;
	isc_nbackup_lostrec_guid_db          = 337117261;
	gds_nbackup_lostrec_guid_db          = 337117261;
	isc_nbackup_seq_misuse               = 337117265;
	gds_nbackup_seq_misuse               = 337117265;
	isc_nbackup_wrong_param              = 337117268;
	gds_nbackup_wrong_param              = 337117268;
	isc_nbackup_clean_hist_misuse        = 337117269;
	gds_nbackup_clean_hist_misuse        = 337117269;
	isc_nbackup_clean_hist_missed        = 337117270;
	gds_nbackup_clean_hist_missed        = 337117270;
	isc_nbackup_keep_hist_missed         = 337117271;
	gds_nbackup_keep_hist_missed         = 337117271;
	isc_nbackup_second_keep_switch       = 337117272;
	gds_nbackup_second_keep_switch       = 337117272;
	isc_trace_conflict_acts              = 337182750;
	gds_trace_conflict_acts              = 337182750;
	isc_trace_act_notfound               = 337182751;
	gds_trace_act_notfound               = 337182751;
	isc_trace_switch_once                = 337182752;
	gds_trace_switch_once                = 337182752;
	isc_trace_param_val_miss             = 337182753;
	gds_trace_param_val_miss             = 337182753;
	isc_trace_param_invalid              = 337182754;
	gds_trace_param_invalid              = 337182754;
	isc_trace_switch_unknown             = 337182755;
	gds_trace_switch_unknown             = 337182755;
	isc_trace_switch_svc_only            = 337182756;
	gds_trace_switch_svc_only            = 337182756;
	isc_trace_switch_user_only           = 337182757;
	gds_trace_switch_user_only           = 337182757;
	isc_trace_switch_param_miss          = 337182758;
	gds_trace_switch_param_miss          = 337182758;
	isc_trace_param_act_notcompat        = 337182759;
	gds_trace_param_act_notcompat        = 337182759;
	isc_trace_mandatory_switch_miss      = 337182760;
	gds_trace_mandatory_switch_miss      = 337182760;