1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
#line 1 "netconf_lexer.cc"

#line 3 "netconf_lexer.cc"

#define  YY_INT_ALIGNED short int

/* A lexical scanner generated by flex */

/* %not-for-header */
/* %if-c-only */
/* %if-not-reentrant */
#define yy_create_buffer netconf__create_buffer
#define yy_delete_buffer netconf__delete_buffer
#define yy_scan_buffer netconf__scan_buffer
#define yy_scan_string netconf__scan_string
#define yy_scan_bytes netconf__scan_bytes
#define yy_init_buffer netconf__init_buffer
#define yy_flush_buffer netconf__flush_buffer
#define yy_load_buffer_state netconf__load_buffer_state
#define yy_switch_to_buffer netconf__switch_to_buffer
#define yypush_buffer_state netconf_push_buffer_state
#define yypop_buffer_state netconf_pop_buffer_state
#define yyensure_buffer_stack netconf_ensure_buffer_stack
#define yy_flex_debug netconf__flex_debug
#define yyin netconf_in
#define yyleng netconf_leng
#define yylex netconf_lex
#define yylineno netconf_lineno
#define yyout netconf_out
#define yyrestart netconf_restart
#define yytext netconf_text
#define yywrap netconf_wrap
#define yyalloc netconf_alloc
#define yyrealloc netconf_realloc
#define yyfree netconf_free

/* %endif */
/* %endif */
/* %ok-for-header */

#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 6
#define YY_FLEX_SUBMINOR_VERSION 4
#if YY_FLEX_SUBMINOR_VERSION > 0
#define FLEX_BETA
#endif

/* %if-c++-only */
/* %endif */

/* %if-c-only */
#ifdef yy_create_buffer
#define netconf__create_buffer_ALREADY_DEFINED
#else
#define yy_create_buffer netconf__create_buffer
#endif

#ifdef yy_delete_buffer
#define netconf__delete_buffer_ALREADY_DEFINED
#else
#define yy_delete_buffer netconf__delete_buffer
#endif

#ifdef yy_scan_buffer
#define netconf__scan_buffer_ALREADY_DEFINED
#else
#define yy_scan_buffer netconf__scan_buffer
#endif

#ifdef yy_scan_string
#define netconf__scan_string_ALREADY_DEFINED
#else
#define yy_scan_string netconf__scan_string
#endif

#ifdef yy_scan_bytes
#define netconf__scan_bytes_ALREADY_DEFINED
#else
#define yy_scan_bytes netconf__scan_bytes
#endif

#ifdef yy_init_buffer
#define netconf__init_buffer_ALREADY_DEFINED
#else
#define yy_init_buffer netconf__init_buffer
#endif

#ifdef yy_flush_buffer
#define netconf__flush_buffer_ALREADY_DEFINED
#else
#define yy_flush_buffer netconf__flush_buffer
#endif

#ifdef yy_load_buffer_state
#define netconf__load_buffer_state_ALREADY_DEFINED
#else
#define yy_load_buffer_state netconf__load_buffer_state
#endif

#ifdef yy_switch_to_buffer
#define netconf__switch_to_buffer_ALREADY_DEFINED
#else
#define yy_switch_to_buffer netconf__switch_to_buffer
#endif

#ifdef yypush_buffer_state
#define netconf_push_buffer_state_ALREADY_DEFINED
#else
#define yypush_buffer_state netconf_push_buffer_state
#endif

#ifdef yypop_buffer_state
#define netconf_pop_buffer_state_ALREADY_DEFINED
#else
#define yypop_buffer_state netconf_pop_buffer_state
#endif

#ifdef yyensure_buffer_stack
#define netconf_ensure_buffer_stack_ALREADY_DEFINED
#else
#define yyensure_buffer_stack netconf_ensure_buffer_stack
#endif

#ifdef yylex
#define netconf_lex_ALREADY_DEFINED
#else
#define yylex netconf_lex
#endif

#ifdef yyrestart
#define netconf_restart_ALREADY_DEFINED
#else
#define yyrestart netconf_restart
#endif

#ifdef yylex_init
#define netconf_lex_init_ALREADY_DEFINED
#else
#define yylex_init netconf_lex_init
#endif

#ifdef yylex_init_extra
#define netconf_lex_init_extra_ALREADY_DEFINED
#else
#define yylex_init_extra netconf_lex_init_extra
#endif

#ifdef yylex_destroy
#define netconf_lex_destroy_ALREADY_DEFINED
#else
#define yylex_destroy netconf_lex_destroy
#endif

#ifdef yyget_debug
#define netconf_get_debug_ALREADY_DEFINED
#else
#define yyget_debug netconf_get_debug
#endif

#ifdef yyset_debug
#define netconf_set_debug_ALREADY_DEFINED
#else
#define yyset_debug netconf_set_debug
#endif

#ifdef yyget_extra
#define netconf_get_extra_ALREADY_DEFINED
#else
#define yyget_extra netconf_get_extra
#endif

#ifdef yyset_extra
#define netconf_set_extra_ALREADY_DEFINED
#else
#define yyset_extra netconf_set_extra
#endif

#ifdef yyget_in
#define netconf_get_in_ALREADY_DEFINED
#else
#define yyget_in netconf_get_in
#endif

#ifdef yyset_in
#define netconf_set_in_ALREADY_DEFINED
#else
#define yyset_in netconf_set_in
#endif

#ifdef yyget_out
#define netconf_get_out_ALREADY_DEFINED
#else
#define yyget_out netconf_get_out
#endif

#ifdef yyset_out
#define netconf_set_out_ALREADY_DEFINED
#else
#define yyset_out netconf_set_out
#endif

#ifdef yyget_leng
#define netconf_get_leng_ALREADY_DEFINED
#else
#define yyget_leng netconf_get_leng
#endif

#ifdef yyget_text
#define netconf_get_text_ALREADY_DEFINED
#else
#define yyget_text netconf_get_text
#endif

#ifdef yyget_lineno
#define netconf_get_lineno_ALREADY_DEFINED
#else
#define yyget_lineno netconf_get_lineno
#endif

#ifdef yyset_lineno
#define netconf_set_lineno_ALREADY_DEFINED
#else
#define yyset_lineno netconf_set_lineno
#endif

#ifdef yywrap
#define netconf_wrap_ALREADY_DEFINED
#else
#define yywrap netconf_wrap
#endif

/* %endif */

#ifdef yyalloc
#define netconf_alloc_ALREADY_DEFINED
#else
#define yyalloc netconf_alloc
#endif

#ifdef yyrealloc
#define netconf_realloc_ALREADY_DEFINED
#else
#define yyrealloc netconf_realloc
#endif

#ifdef yyfree
#define netconf_free_ALREADY_DEFINED
#else
#define yyfree netconf_free
#endif

/* %if-c-only */

#ifdef yytext
#define netconf_text_ALREADY_DEFINED
#else
#define yytext netconf_text
#endif

#ifdef yyleng
#define netconf_leng_ALREADY_DEFINED
#else
#define yyleng netconf_leng
#endif

#ifdef yyin
#define netconf_in_ALREADY_DEFINED
#else
#define yyin netconf_in
#endif

#ifdef yyout
#define netconf_out_ALREADY_DEFINED
#else
#define yyout netconf_out
#endif

#ifdef yy_flex_debug
#define netconf__flex_debug_ALREADY_DEFINED
#else
#define yy_flex_debug netconf__flex_debug
#endif

#ifdef yylineno
#define netconf_lineno_ALREADY_DEFINED
#else
#define yylineno netconf_lineno
#endif

/* %endif */

/* First, we deal with  platform-specific or compiler-specific issues. */

/* begin standard C headers. */
/* %if-c-only */
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
/* %endif */

/* %if-tables-serialization */
/* %endif */
/* end standard C headers. */

/* %if-c-or-c++ */
/* flex integer type definitions */

#ifndef FLEXINT_H
#define FLEXINT_H

/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */

#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L

/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
 * if you want the limit (max/min) macros for int types. 
 */
#ifndef __STDC_LIMIT_MACROS
#define __STDC_LIMIT_MACROS 1
#endif

#include <inttypes.h>
typedef int8_t flex_int8_t;
typedef uint8_t flex_uint8_t;
typedef int16_t flex_int16_t;
typedef uint16_t flex_uint16_t;
typedef int32_t flex_int32_t;
typedef uint32_t flex_uint32_t;
#else
typedef signed char flex_int8_t;
typedef short int flex_int16_t;
typedef int flex_int32_t;
typedef unsigned char flex_uint8_t; 
typedef unsigned short int flex_uint16_t;
typedef unsigned int flex_uint32_t;

/* Limits of integral types. */
#ifndef INT8_MIN
#define INT8_MIN               (-128)
#endif
#ifndef INT16_MIN
#define INT16_MIN              (-32767-1)
#endif
#ifndef INT32_MIN
#define INT32_MIN              (-2147483647-1)
#endif
#ifndef INT8_MAX
#define INT8_MAX               (127)
#endif
#ifndef INT16_MAX
#define INT16_MAX              (32767)
#endif
#ifndef INT32_MAX
#define INT32_MAX              (2147483647)
#endif
#ifndef UINT8_MAX
#define UINT8_MAX              (255U)
#endif
#ifndef UINT16_MAX
#define UINT16_MAX             (65535U)
#endif
#ifndef UINT32_MAX
#define UINT32_MAX             (4294967295U)
#endif

#ifndef SIZE_MAX
#define SIZE_MAX               (~(size_t)0)
#endif

#endif /* ! C99 */

#endif /* ! FLEXINT_H */

/* %endif */

/* begin standard C++ headers. */
/* %if-c++-only */
/* %endif */

/* TODO: this is always defined, so inline it */
#define yyconst const

#if defined(__GNUC__) && __GNUC__ >= 3
#define yynoreturn __attribute__((__noreturn__))
#else
#define yynoreturn
#endif

/* %not-for-header */
/* Returned upon end-of-file. */
#define YY_NULL 0
/* %ok-for-header */

/* %not-for-header */
/* Promotes a possibly negative, possibly signed char to an
 *   integer in range [0..255] for use as an array index.
 */
#define YY_SC_TO_UI(c) ((YY_CHAR) (c))
/* %ok-for-header */

/* %if-reentrant */
/* %endif */

/* %if-not-reentrant */

/* %endif */

/* Enter a start condition.  This macro really ought to take a parameter,
 * but we do it the disgusting crufty way forced on us by the ()-less
 * definition of BEGIN.
 */
#define BEGIN (yy_start) = 1 + 2 *
/* Translate the current start state into a value that can be later handed
 * to BEGIN to return to the state.  The YYSTATE alias is for lex
 * compatibility.
 */
#define YY_START (((yy_start) - 1) / 2)
#define YYSTATE YY_START
/* Action number for EOF rule of a given start state. */
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
/* Special action meaning "start processing a new file". */
#define YY_NEW_FILE yyrestart( yyin  )
#define YY_END_OF_BUFFER_CHAR 0

/* Size of default input buffer. */
#ifndef YY_BUF_SIZE
#ifdef __ia64__
/* On IA-64, the buffer size is 16k, not 8k.
 * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.
 * Ditto for the __ia64__ case accordingly.
 */
#define YY_BUF_SIZE 32768
#else
#define YY_BUF_SIZE 16384
#endif /* __ia64__ */
#endif

/* The state buf must be large enough to hold one state per character in the main buffer.
 */
#define YY_STATE_BUF_SIZE   ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))

#ifndef YY_TYPEDEF_YY_BUFFER_STATE
#define YY_TYPEDEF_YY_BUFFER_STATE
typedef struct yy_buffer_state *YY_BUFFER_STATE;
#endif

#ifndef YY_TYPEDEF_YY_SIZE_T
#define YY_TYPEDEF_YY_SIZE_T
typedef size_t yy_size_t;
#endif

/* %if-not-reentrant */
extern int yyleng;
/* %endif */

/* %if-c-only */
/* %if-not-reentrant */
extern FILE *yyin, *yyout;
/* %endif */
/* %endif */

#define EOB_ACT_CONTINUE_SCAN 0
#define EOB_ACT_END_OF_FILE 1
#define EOB_ACT_LAST_MATCH 2
    
    #define YY_LESS_LINENO(n)
    #define YY_LINENO_REWIND_TO(ptr)
    
/* Return all but the first "n" matched characters back to the input stream. */
#define yyless(n) \
	do \
		{ \
		/* Undo effects of setting up yytext. */ \
        int yyless_macro_arg = (n); \
        YY_LESS_LINENO(yyless_macro_arg);\
		*yy_cp = (yy_hold_char); \
		YY_RESTORE_YY_MORE_OFFSET \
		(yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
		YY_DO_BEFORE_ACTION; /* set up yytext again */ \
		} \
	while ( 0 )
#define unput(c) yyunput( c, (yytext_ptr)  )

#ifndef YY_STRUCT_YY_BUFFER_STATE
#define YY_STRUCT_YY_BUFFER_STATE
struct yy_buffer_state
	{
/* %if-c-only */
	FILE *yy_input_file;
/* %endif */

/* %if-c++-only */
/* %endif */

	char *yy_ch_buf;		/* input buffer */
	char *yy_buf_pos;		/* current position in input buffer */

	/* Size of input buffer in bytes, not including room for EOB
	 * characters.
	 */
	int yy_buf_size;

	/* Number of characters read into yy_ch_buf, not including EOB
	 * characters.
	 */
	int yy_n_chars;

	/* Whether we "own" the buffer - i.e., we know we created it,
	 * and can realloc() it to grow it, and should free() it to
	 * delete it.
	 */
	int yy_is_our_buffer;

	/* Whether this is an "interactive" input source; if so, and
	 * if we're using stdio for input, then we want to use getc()
	 * instead of fread(), to make sure we stop fetching input after
	 * each newline.
	 */
	int yy_is_interactive;

	/* Whether we're considered to be at the beginning of a line.
	 * If so, '^' rules will be active on the next match, otherwise
	 * not.
	 */
	int yy_at_bol;

    int yy_bs_lineno; /**< The line count. */
    int yy_bs_column; /**< The column count. */

	/* Whether to try to fill the input buffer when we reach the
	 * end of it.
	 */
	int yy_fill_buffer;

	int yy_buffer_status;

#define YY_BUFFER_NEW 0
#define YY_BUFFER_NORMAL 1
	/* When an EOF's been seen but there's still some text to process
	 * then we mark the buffer as YY_EOF_PENDING, to indicate that we
	 * shouldn't try reading from the input source any more.  We might
	 * still have a bunch of tokens to match, though, because of
	 * possible backing-up.
	 *
	 * When we actually see the EOF, we change the status to "new"
	 * (via yyrestart()), so that the user can continue scanning by
	 * just pointing yyin at a new input file.
	 */
#define YY_BUFFER_EOF_PENDING 2

	};
#endif /* !YY_STRUCT_YY_BUFFER_STATE */

/* %if-c-only Standard (non-C++) definition */
/* %not-for-header */
/* %if-not-reentrant */

/* Stack of input buffers. */
static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
static YY_BUFFER_STATE * yy_buffer_stack = NULL; /**< Stack as an array. */
/* %endif */
/* %ok-for-header */

/* %endif */

/* We provide macros for accessing buffer states in case in the
 * future we want to put the buffer states in a more general
 * "scanner state".
 *
 * Returns the top of the stack, or NULL.
 */
#define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
                          ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
                          : NULL)
/* Same as previous macro, but useful when we know that the buffer stack is not
 * NULL or when we need an lvalue. For internal use only.
 */
#define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]

/* %if-c-only Standard (non-C++) definition */

/* %if-not-reentrant */
/* %not-for-header */
/* yy_hold_char holds the character lost when yytext is formed. */
static char yy_hold_char;
static int yy_n_chars;		/* number of characters read into yy_ch_buf */
int yyleng;

/* Points to current character in buffer. */
static char *yy_c_buf_p = NULL;
static int yy_init = 0;		/* whether we need to initialize */
static int yy_start = 0;	/* start state number */

/* Flag which is used to allow yywrap()'s to do buffer switches
 * instead of setting up a fresh yyin.  A bit of a hack ...
 */
static int yy_did_buffer_switch_on_eof;
/* %ok-for-header */

/* %endif */

void yyrestart ( FILE *input_file  );
void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer  );
YY_BUFFER_STATE yy_create_buffer ( FILE *file, int size  );
void yy_delete_buffer ( YY_BUFFER_STATE b  );
void yy_flush_buffer ( YY_BUFFER_STATE b  );
void yypush_buffer_state ( YY_BUFFER_STATE new_buffer  );
void yypop_buffer_state ( void );

static void yyensure_buffer_stack ( void );
static void yy_load_buffer_state ( void );
static void yy_init_buffer ( YY_BUFFER_STATE b, FILE *file  );
#define YY_FLUSH_BUFFER yy_flush_buffer( YY_CURRENT_BUFFER )

YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size  );
YY_BUFFER_STATE yy_scan_string ( const char *yy_str  );
YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len  );

/* %endif */

void *yyalloc ( yy_size_t  );
void *yyrealloc ( void *, yy_size_t  );
void yyfree ( void *  );

#define yy_new_buffer yy_create_buffer
#define yy_set_interactive(is_interactive) \
	{ \
	if ( ! YY_CURRENT_BUFFER ){ \
        yyensure_buffer_stack (); \
		YY_CURRENT_BUFFER_LVALUE =    \
            yy_create_buffer( yyin, YY_BUF_SIZE ); \
	} \
	YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
	}
#define yy_set_bol(at_bol) \
	{ \
	if ( ! YY_CURRENT_BUFFER ){\
        yyensure_buffer_stack (); \
		YY_CURRENT_BUFFER_LVALUE =    \
            yy_create_buffer( yyin, YY_BUF_SIZE ); \
	} \
	YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
	}
#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)

/* %% [1.0] yytext/yyin/yyout/yy_state_type/yylineno etc. def's & init go here */
/* Begin user sect3 */

#define netconf_wrap() (/*CONSTCOND*/1)
#define YY_SKIP_YYWRAP

#define FLEX_DEBUG
typedef flex_uint8_t YY_CHAR;

FILE *yyin = NULL, *yyout = NULL;

typedef int yy_state_type;

extern int yylineno;
int yylineno = 1;

extern char *yytext;
#ifdef yytext_ptr
#undef yytext_ptr
#endif
#define yytext_ptr yytext

/* %% [1.5] DFA */

/* %if-c-only Standard (non-C++) definition */

static yy_state_type yy_get_previous_state ( void );
static yy_state_type yy_try_NUL_trans ( yy_state_type current_state  );
static int yy_get_next_buffer ( void );
static void yynoreturn yy_fatal_error ( const char* msg  );

/* %endif */

/* Done after the current pattern has been matched and before the
 * corresponding action - sets up yytext.
 */
#define YY_DO_BEFORE_ACTION \
	(yytext_ptr) = yy_bp; \
/* %% [2.0] code to fiddle yytext and yyleng for yymore() goes here \ */\
	yyleng = (int) (yy_cp - yy_bp); \
	(yy_hold_char) = *yy_cp; \
	*yy_cp = '\0'; \
/* %% [3.0] code to copy yytext_ptr to yytext[] goes here, if %array \ */\
	(yy_c_buf_p) = yy_cp;
/* %% [4.0] data tables for the DFA and the user's section 1 definitions go here */
#define YY_NUM_RULES 64
#define YY_END_OF_BUFFER 65
/* This struct is not used in this scanner,
   but its presence is necessary. */
struct yy_trans_info
	{
	flex_int32_t yy_verify;
	flex_int32_t yy_nxt;
	};
static const flex_int16_t yy_accept[371] =
    {   0,
       57,   57,    0,    0,    0,    0,    0,    0,    0,    0,
       65,   63,   10,   11,   63,    1,   57,   54,   57,   57,
       63,   56,   55,   63,   63,   63,   63,   63,   50,   51,
       63,   63,   63,   52,   53,    5,    5,    5,   63,   63,
       63,   10,   11,    0,    0,   45,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    1,   57,   57,    0,   56,   57,    3,    2,    6,
        0,   57,    0,    0,    0,    0,    0,    0,    4,    0,
        0,    9,    0,   46,    0,    0,    0,   48,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,

        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    2,    0,    0,    0,    0,    0,    0,    0,
        8,    0,    0,   47,   49,    0,    0,   22,    0,    0,
       21,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,   62,   60,    0,   59,   58,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,   61,   58,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,   26,

        0,    0,    0,    0,    0,    0,   35,    0,    0,    0,
        0,    0,    0,    0,   25,    0,    0,    0,    0,    0,
        0,    0,    0,   19,   20,   39,    0,    0,    0,    0,
        0,    0,   23,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    7,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,   41,   38,    0,    0,    0,    0,    0,
        0,   27,    0,    0,    0,   12,    0,   14,    0,    0,
        0,   32,   34,    0,   40,    0,    0,    0,   42,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,   44,    0,    0,    0,    0,    0,

        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,   43,    0,    0,
        0,    0,   33,    0,    0,   30,    0,    0,    0,   15,
        0,    0,    0,    0,    0,   29,   28,    0,    0,    0,
        0,    0,    0,    0,    0,    0,   13,    0,    0,    0,
        0,    0,    0,    0,    0,   24,    0,    0,   37,   36,
        0,    0,   31,   18,    0,    0,    0,   17,   16,    0
    } ;

static const YY_CHAR yy_ec[256] =
    {   0,
        1,    1,    1,    1,    1,    1,    1,    1,    2,    3,
        1,    1,    2,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    4,    5,    6,    7,    5,    5,    5,    5,    5,
        5,    8,    9,   10,   11,   12,   13,   14,   14,   15,
       14,   16,   14,   17,   14,   14,   14,   18,    5,   19,
        5,   20,   21,    5,   22,   23,   23,   23,   24,   25,
        5,    5,    5,    5,    5,   26,    5,   27,    5,    5,
        5,   28,   29,   30,   31,    5,    5,    5,    5,    5,
       32,   33,   34,    5,   35,    5,   36,   37,   38,   39,

       40,   41,   42,   43,   44,    5,   45,   46,   47,   48,
       49,   50,    5,   51,   52,   53,   54,   55,    5,   56,
       57,   58,   59,    5,   60,    5,    5,    5,    5,    5,
        5,    5,    5,    5,    5,    5,    5,    5,    5,    5,
        5,    5,    5,    5,    5,    5,    5,    5,    5,    5,
        5,    5,    5,    5,    5,    5,    5,    5,    5,    5,
        5,    5,    5,    5,    5,    5,    5,    5,    5,    5,
        5,    5,    5,    5,    5,    5,    5,    5,    5,    5,
        5,    5,    5,    5,    5,    5,    5,    5,    5,    5,
        5,    5,    5,    5,    5,    5,    5,    5,    5,    5,

        5,    5,    5,    5,    5,    5,    5,    5,    5,    5,
        5,    5,    5,    5,    5,    5,    5,    5,    5,    5,
        5,    5,    5,    5,    5,    5,    5,    5,    5,    5,
        5,    5,    5,    5,    5,    5,    5,    5,    5,    5,
        5,    5,    5,    5,    5,    5,    5,    5,    5,    5,
        5,    5,    5,    5,    5
    } ;

static const YY_CHAR yy_meta[61] =
    {   0,
        1,    1,    2,    1,    1,    3,    1,    1,    1,    1,
        1,    1,    4,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    4,    1,    1,    1,    4,    1,    1,    1,
        4,    1,    1,    1,    1,    1,    1,    4,    1,    1,
        4,    1,    4,    4,    1,    1,    1,    1,    1,    1
    } ;

static const flex_int16_t yy_base[380] =
    {   0,
        0,    0,   59,   62,   65,    0,   63,   67,   47,   64,
      286, 2508,   84,  259,  125,    0,  105, 2508,  120,  125,
       85,  169, 2508,  238,  139,   65,   69,   82, 2508, 2508,
       80,   84,  118, 2508, 2508, 2508,   92,  205,  168,    0,
      193,  110,  205,   97,  186, 2508,  193,  184,  201,  209,
      221,  238,  245,  264,  254,  271,  279,  290,  299,  308,
      314,    0,  314,  347,  358,  364,  368, 2508,    0, 2508,
      214,  320,  121,  152,  128,  174,  217,  160, 2508,  168,
      199, 2508,  137, 2508,    0,  388,  195,  394,  436,  400,
      410,  422,  429,  462,  477,  483,  490,  499,  505,  511,

      518,  524,  544,  553,  559,  566,  578,  587,  594,  601,
      616,  622,    0,  223,  223,  255,  224,  242,  259,  130,
     2508,  634,  155, 2508, 2508,  659,  656, 2508,  645,  684,
     2508,  700,  709,  717,  723,  729,  737,  743,  771,  780,
      788,  794,  800,  808,  814,  823,  836,  851,  858,  869,
      876,  884,  282, 2508, 2508,  300, 2508, 2508,  103,  891,
      927,  902,  913,  928,  953,  968,  974,  986,  996, 1003,
     1009, 1019, 1025, 1031, 1042, 1053, 1064, 1075, 1081, 1090,
     1097, 1103, 1109, 1123, 1132, 1143, 2508, 2508,  112, 1152,
     1187, 1160, 1172, 1166, 1185, 1231, 1237, 1243, 1249, 2508,

     1255, 1265, 1271, 1277, 1288, 1294, 2508, 1311, 1317, 1323,
     1335, 1345, 1352, 1359, 2508, 1369, 1380,   64, 1387, 1393,
     1416, 1428, 1435, 2508, 2508, 2508, 1444, 1450, 1456, 1464,
     1478, 1490, 2508, 1498, 1511, 1518, 1524, 1534, 1540, 1546,
     1552, 1559, 2508, 1569, 1580, 1592, 1603, 1614, 1620, 1626,
     1632, 1638, 1649, 2508, 2508, 1655, 1672, 1678, 1684, 1690,
     1696, 2508, 1706, 1713, 1724, 2508, 1730, 2508, 1739, 1750,
     1767, 2508, 2508, 1773, 2508, 1779, 1786, 1793, 2508, 1807,
     1814, 1821, 1829, 1836, 1850, 1857, 1864, 1871, 1883, 1890,
     1899, 1905, 1912, 1924, 2508, 1934, 1941, 1947, 1953, 1967,

     1976, 1982, 1993, 2000, 2010, 2017, 2026, 2033, 2039, 2046,
     2052, 2061, 2072, 2081, 2087, 2094, 2100, 2508, 2106, 2115,
     2122, 2140, 2508, 2148, 2157, 2508, 2163, 2174, 2181, 2508,
     2191, 2197, 2207, 2217, 2231, 2508, 2508, 2242, 2250, 2256,
     2265, 2279, 2289, 2299, 2305, 2314, 2508, 2322, 2328, 2340,
     2347, 2357, 2364, 2373, 2380, 2508, 2392, 2399, 2508, 2508,
     2406, 2415, 2508, 2508, 2421, 2427, 2435, 2508, 2508, 2508,
     2473, 2477, 2481, 2485, 2489, 2493, 2497, 2499, 2503
    } ;

static const flex_int16_t yy_def[380] =
    {   0,
      370,    1,  371,  371,    1,    5,    5,    5,    5,    5,
      370,  370,  370,  370,  372,  373,  370,  370,  370,  370,
      370,  370,  370,  370,  370,  370,  370,  370,  370,  370,
      370,  370,  370,  370,  370,  370,  370,  370,  370,  374,
      370,  370,  370,  375,  372,  370,  372,  376,  372,  372,
      372,  372,  372,  372,  372,  372,  372,  372,  372,  372,
      372,  373,  370,  370,  370,  370,  370,  370,  377,  370,
      370,  370,  370,  370,  370,  370,  370,  370,  370,  370,
      374,  370,  375,  370,  378,  372,  379,  372,  376,  372,
      372,  372,  372,  372,  372,  372,  372,  372,  372,  372,

      372,  372,  372,  372,  372,  372,  372,  372,  372,  372,
      372,  372,  377,  370,  370,  370,  370,  370,  370,  370,
      370,  372,  379,  370,  370,   89,  372,  370,  372,  372,
      370,  372,  372,  372,  372,  372,  372,  372,  372,  372,
      372,  372,  372,  372,  372,  372,  372,  372,  372,  372,
      372,  372,  370,  370,  370,  370,  370,  370,  370,  372,
       89,  372,  372,  372,  372,  372,  372,  372,  372,  372,
      372,  372,  372,  372,  372,  372,  372,  372,  372,  372,
      372,  372,  372,  372,  372,  372,  370,  370,  370,  372,
       89,  372,  372,  372,  372,  372,  372,  372,  372,  370,

      372,  372,  372,  372,  372,  372,  370,  372,  372,  372,
      372,  372,  372,  372,  370,  372,  372,  370,  372,  372,
      372,  372,  372,  370,  370,  370,  372,  372,  372,  372,
      372,  372,  370,  372,  372,  372,  372,  372,  372,  372,
      372,  372,  370,  372,  372,  372,  372,  372,  372,  372,
      372,  372,  372,  370,  370,  372,  372,  372,  372,  372,
      372,  370,  372,  372,  372,  370,  372,  370,  372,  372,
      372,  370,  370,  372,  370,  372,  372,  372,  370,  372,
      372,  372,  372,  372,  372,  372,  372,  372,  372,  372,
      372,  372,  372,  372,  370,  372,  372,  372,  372,  372,

      372,  372,  372,  372,  372,  372,  372,  372,  372,  372,
      372,  372,  372,  372,  372,  372,  372,  370,  372,  372,
      372,  372,  370,  372,  372,  370,  372,  372,  372,  370,
      372,  372,  372,  372,  372,  370,  370,  372,  372,  372,
      372,  372,  372,  372,  372,  372,  370,  372,  372,  372,
      372,  372,  372,  372,  372,  370,  372,  372,  370,  370,
      372,  372,  370,  370,  372,  372,  372,  370,  370,    0,
      370,  370,  370,  370,  370,  370,  370,  370,  370
    } ;

static const flex_int16_t yy_nxt[2569] =
    {   0,
       12,   13,   14,   13,   12,   15,   16,   12,   17,   18,
       19,   20,   21,   22,   22,   22,   22,   23,   24,   12,
       12,   12,   12,   25,   26,   12,   27,   12,   12,   28,
       12,   29,   12,   30,   12,   12,   12,   12,   12,   25,
       31,   12,   12,   12,   12,   12,   12,   32,   12,   12,
       12,   12,   33,   12,   12,   12,   12,   12,   34,   35,
       37,   14,   37,   37,   14,   37,   38,   41,   40,   38,
       12,   12,   40,   12,   12,   12,   12,   12,   12,   12,
       12,   12,   12,   12,   41,   42,   73,   42,   12,   12,
       12,   12,   68,   42,   12,   42,   12,   69,   12,   74,

       73,   73,   84,  243,   12,   12,   12,   12,   39,   75,
       12,   42,   12,   42,   74,   76,   63,   12,   64,   64,
       64,   64,   74,   12,   12,   44,   44,   44,   65,   85,
       46,   63,   75,   66,   66,   66,   66,   77,   67,   67,
       67,   67,   84,   65,   65,   75,  114,   71,   65,   71,
      218,   47,   72,   72,   72,   72,  189,   48,  116,   65,
      124,   49,   50,   51,   65,   52,  114,   53,   78,   85,
       54,   55,   56,   57,   58,  159,   59,  115,   60,   61,
       63,  116,   66,   66,   66,   66,   44,   44,   44,   88,
      116,   46,   65,   44,   44,   44,   45,  115,   46,  114,

      124,   44,   44,   44,  121,  120,   46,   43,   65,   44,
       44,   44,   82,  119,   46,   80,   45,   79,   48,  117,
       45,   44,   44,   44,   45,   48,   46,   72,   72,   72,
       72,   45,   86,   48,   45,   93,   45,   89,   44,   44,
       44,   48,  115,   46,   91,   44,   44,   44,  154,   90,
       46,  153,  153,   48,   44,   44,   44,   92,   70,   46,
       94,   43,  118,   95,   44,   44,   44,  154,  154,   46,
       48,   44,   44,   44,  153,  156,   46,   48,  155,   44,
       44,   44,  155,   96,   46,  370,   48,  157,  370,  101,
       44,   44,   44,   97,  155,   46,   48,   98,  158,   44,

       44,   44,  102,   48,   46,  187,  103,   99,   44,   44,
       44,   48,  100,   46,   44,   44,   44,  370,  370,   46,
      370,  187,   48,  187,  370,  105,  370,   67,   67,   67,
       67,   48,  104,   72,   72,   72,   72,   65,  106,  188,
       48,  370,  370,  370,  370,  370,   48,  107,  370,  112,
      370,  108,  109,   65,  370,  110,  370,  370,   63,  111,
       64,   64,   64,   64,  370,  370,   71,  370,   71,  370,
       65,   72,   72,   72,   72,   63,  370,   66,   66,   66,
       66,   67,   67,   67,   67,  370,   65,   65,   44,   44,
       44,   65,  370,   46,   44,   44,   44,  370,  370,   46,

       44,   44,   44,   65,  370,   46,  370,   65,  370,  370,
       44,   44,   44,  370,  370,  128,  370,  370,  370,  370,
       48,  370,   44,   44,   44,  370,   48,   46,  370,   44,
       44,   44,   48,  370,  131,  370,  370,  370,  370,  370,
      122,  125,   48,  370,  370,  370,  370,  370,  127,  126,
      126,  126,  126,  370,   48,  370,  370,  126,  126,  126,
      126,   48,   44,   44,   44,  370,  370,   46,  129,  130,
      370,  126,  126,  126,  126,  126,  126,   44,   44,   44,
      370,  370,   46,   44,   44,   44,  370,  370,   46,  370,
       44,   44,   44,  370,   48,   46,  370,  370,  132,   44,

       44,   44,  370,  370,   46,   44,   44,   44,  370,   48,
       46,   44,   44,   44,  133,   48,   46,  370,   44,   44,
       44,  370,   48,   46,   44,   44,   44,  370,  370,   46,
      370,   48,  370,  370,  370,  370,  134,   48,  135,  370,
      370,  137,  370,   48,   44,   44,   44,  370,  370,   46,
       48,  136,  138,   44,   44,   44,   48,  370,   46,   44,
       44,   44,  141,  370,   46,  139,   44,   44,   44,  370,
      370,   46,  370,  140,  370,  370,   48,  370,   44,   44,
       44,  370,  370,   46,  370,   48,  370,   44,   44,   44,
      142,   48,   46,  370,   44,   44,   44,  370,   48,   46,

      370,   44,   44,   44,  370,  143,   46,  370,  370,  144,
       48,  145,  370,  370,  370,  147,   44,   44,   44,   48,
      146,   46,   44,   44,   44,  148,   48,   46,  370,  370,
      149,  370,  370,   48,   44,   44,   44,  370,  370,   46,
      370,  370,  370,  370,  150,   44,   44,   44,   48,  370,
       46,  370,  370,  370,   48,  151,   44,   44,   44,  370,
      370,   46,  370,  370,  370,  370,   48,  152,  370,  370,
      370,  160,  161,  161,  161,  161,  370,   48,  370,  370,
      161,  161,  161,  161,   44,   44,   44,  370,   48,   46,
      370,  163,  370,  370,  161,  161,  161,  161,  161,  161,

       44,   44,   44,  370,  370,   46,  370,  370,  162,   44,
       44,   44,  370,  370,   46,  370,   48,   44,   44,   44,
      370,  370,   46,   44,   44,   44,  370,  370,   46,   44,
       44,   44,   48,  370,   46,  370,  164,   44,   44,   44,
      370,   48,   46,   44,   44,   44,  370,  370,   46,   48,
      370,  370,  370,  165,  370,   48,  370,  370,  166,  370,
      370,   48,  370,  370,  370,  370,  370,  168,  167,   48,
      370,   44,   44,   44,  370,   48,   46,  370,  169,  370,
       44,   44,   44,  370,  171,   46,  370,  170,   44,   44,
       44,  370,  370,   46,   44,   44,   44,  370,  370,   46,

       44,   44,   44,   48,  370,   46,  172,  370,   44,   44,
       44,  370,   48,   46,   44,   44,   44,  370,  370,   46,
       48,  370,  370,   44,   44,   44,   48,  175,   46,  370,
      370,  173,   48,  176,  174,  370,   44,   44,   44,  370,
       48,   46,  370,  178,  370,  370,   48,  370,  370,  177,
      370,   44,   44,   44,  370,   48,   46,  370,   44,   44,
       44,  370,  180,   46,  370,  370,  179,  370,   48,   44,
       44,   44,  370,  370,   46,  370,   44,   44,   44,  370,
      181,   46,  370,   48,   44,   44,   44,  370,  370,   46,
       48,   44,   44,   44,  370,  370,   46,  370,  370,  182,

      370,   48,   44,   44,   44,  370,  370,   46,   48,  183,
      370,  370,  192,   44,   44,   44,   48,  370,   46,  370,
      370,  370,  370,   48,  184,  370,  185,  186,   44,   44,
       44,  370,  370,   46,   48,  370,  370,  370,  370,  190,
      191,  191,  191,  191,  370,   48,  370,  370,  191,  191,
      191,  191,  193,   44,   44,   44,  370,  370,   46,  370,
       48,  370,  191,  191,  191,  191,  191,  191,   44,   44,
       44,  370,  370,   46,   44,   44,   44,  370,  194,   46,
      370,  370,  370,  196,  197,   48,   44,   44,   44,  370,
      370,   46,  370,  370,  195,  370,   44,   44,   44,  370,

       48,  200,  370,   44,   44,   44,   48,  370,   46,   44,
       44,   44,  370,  370,   46,  370,  198,  370,   48,   44,
       44,   44,  370,  370,   46,   44,   44,   44,   48,  370,
       46,   44,   44,   44,  370,   48,   46,  199,  201,  370,
      370,   48,   44,   44,   44,  370,  370,   46,  202,  370,
      370,   48,  370,   44,   44,   44,  370,   48,  207,  370,
      203,  370,  370,   48,   44,   44,   44,  370,  204,   46,
      205,  370,  370,  370,   48,   44,   44,   44,  370,  370,
       46,   44,   44,   44,  370,   48,   46,  206,  370,  370,
       44,   44,   44,  370,  370,   46,   48,   44,   44,   44,

      370,  370,   46,   44,   44,   44,  370,   48,   46,   44,
       44,   44,  370,   48,   46,  370,  370,  208,  370,  370,
      210,  209,   48,   44,   44,   44,  370,  370,  215,   48,
      370,  370,   44,   44,   44,   48,  212,   46,  370,  370,
      211,   48,  216,   44,   44,   44,  214,  370,   46,  370,
      370,  370,   44,   44,   44,   48,  213,   46,  370,  370,
       44,   44,   44,  370,   48,   46,   44,   44,   44,  370,
      370,   46,   44,   44,   44,   48,  370,   46,  370,  370,
      370,  217,  370,  370,   48,   44,   44,   44,  370,  370,
       46,  370,   48,  370,  370,  370,  370,  370,   48,  219,

       45,   45,   45,   45,   48,  370,  370,  370,   45,   45,
       45,   45,  370,  220,  222,  370,  370,   48,  370,  221,
      370,  370,   45,   45,   45,   45,   45,   45,  370,  370,
      223,   44,   44,   44,  370,  370,  224,   44,   44,   44,
      370,  370,  225,   44,   44,   44,  370,  370,  226,   44,
       44,   44,  370,  370,   46,   44,   44,   44,  370,  227,
       46,  370,  370,   48,  370,   44,   44,   44,  370,   48,
       46,   44,   44,   44,  370,   48,   46,   44,   44,   44,
      370,   48,   46,  370,  370,  370,  370,   48,   44,   44,
       44,  370,  370,   46,   44,   44,   44,   48,  370,  233,

      370,  370,  370,   48,  370,  228,  370,  370,  370,   48,
      230,   44,   44,   44,  370,  229,   46,   44,   44,   44,
       48,  370,   46,   44,   44,   44,   48,  370,   46,  370,
      370,  370,  370,  370,  231,   44,   44,   44,  232,  370,
       46,  370,  370,   48,  370,   44,   44,   44,  370,   48,
       46,  370,   44,   44,   44,   48,  235,   46,  370,   44,
       44,   44,  370,  234,   46,  370,  370,   48,  370,   44,
       44,   44,  370,  236,   46,  370,  370,   48,  237,  370,
       44,   44,   44,  370,   48,   46,  370,   44,   44,   44,
      370,   48,   46,   44,   44,   44,  370,  238,   46,  370,

      370,   48,  370,  370,  239,  370,  241,  370,  370,  240,
      370,  370,   48,  370,  370,  242,   44,   44,   44,   48,
      370,   46,  370,  370,  370,   48,  370,  244,   44,   44,
       44,  370,  370,   46,  370,   44,   44,   44,  370,  370,
       46,  370,  245,  370,   44,   44,   44,  370,   48,   46,
       44,   44,   44,  370,  370,   46,   44,   44,   44,  370,
       48,   46,  370,  370,   44,   44,   44,   48,  246,   46,
      370,  370,  370,  247,  248,  370,   48,  370,   44,   44,
       44,  370,   48,   46,  370,  370,  370,  370,   48,  249,
       44,   44,   44,  370,  370,  254,   48,  370,   44,   44,

       44,  370,  252,  255,  370,  370,  250,  251,  256,  370,
       48,   44,   44,   44,  370,  370,   46,  253,   44,   44,
       44,  370,   48,   46,   44,   44,   44,  370,  370,   46,
       48,  370,  257,  370,   44,   44,   44,  370,  370,   46,
       44,   44,   44,   48,  261,  262,   44,   44,   44,  370,
       48,   46,   44,   44,   44,  370,   48,   46,  370,   44,
       44,   44,  370,  258,   46,  259,   48,  370,  370,   44,
       44,   44,   48,  370,  266,  370,  260,  370,   48,  370,
       44,   44,   44,  370,   48,   46,  370,  370,  370,  263,
      370,   48,   44,   44,   44,  370,  370,  268,  370,  370,

      264,   48,  370,   44,   44,   44,  370,  370,   46,  370,
      370,  265,   48,  269,   44,   44,   44,  370,  267,   46,
       44,   44,   44,  370,   48,   46,   44,   44,   44,  370,
      370,  272,   44,   44,   44,   48,  370,  273,   44,   44,
       44,  370,  370,   46,  370,  370,   48,  370,  274,   44,
       44,   44,   48,  370,  275,   44,   44,   44,   48,  370,
       46,  370,  370,  271,   48,  370,  370,  370,  270,  370,
       48,  370,   44,   44,   44,  370,  370,   46,   44,   44,
       44,   48,  370,   46,   44,   44,   44,   48,  370,  279,
       44,   44,   44,  370,  370,   46,   44,   44,   44,  370,

      370,   46,  370,  276,   48,  370,   44,   44,   44,  370,
       48,   46,  370,   44,   44,   44,   48,  278,   46,  370,
      277,  370,   48,  370,   44,   44,   44,  370,   48,   46,
       44,   44,   44,  370,  370,   46,  370,  370,   48,   44,
       44,   44,  284,  281,   46,   48,  280,  370,  282,  283,
       44,   44,   44,  370,  370,   46,   48,  370,  370,  370,
      285,  370,   48,  286,  370,  287,  370,   44,   44,   44,
      370,   48,   46,   44,   44,   44,  370,  370,   46,   44,
       44,   44,   48,  370,   46,  370,   44,   44,   44,  289,
      288,   46,  370,   44,   44,   44,  370,  370,   46,   48,

      370,  370,  370,  290,  370,   48,  370,   44,   44,   44,
      370,   48,  295,  370,   44,   44,   44,  370,   48,   46,
      370,   44,   44,   44,  291,   48,   46,  370,  292,   44,
       44,   44,  370,  370,   46,  293,   44,   44,   44,   48,
      370,   46,  370,  294,  370,  370,   48,  370,  370,  296,
       44,   44,   44,   48,  370,   46,  370,   44,   44,   44,
      370,   48,   46,  370,   44,   44,   44,  301,   48,   46,
      370,   44,   44,   44,  370,  299,   46,  297,  370,  298,
      370,  370,   48,   44,   44,   44,  370,  370,   46,   48,
       44,   44,   44,  370,  370,   46,   48,  370,  370,   44,

       44,   44,  300,   48,   46,   44,   44,   44,  370,  370,
       46,  370,   44,   44,   44,   48,  302,   46,  370,  303,
      370,  370,   48,  370,   44,   44,   44,  370,  304,   46,
      370,   48,  370,  370,   44,   44,   44,   48,  306,   46,
      305,   44,   44,   44,   48,  370,   46,   44,   44,   44,
      370,  370,   46,   44,   44,   44,   48,  307,   46,  370,
      370,  370,  370,  313,  308,  370,   48,   44,   44,   44,
      370,  370,   46,   48,  370,  309,   44,   44,   44,   48,
      310,   46,   44,   44,   44,   48,  370,   46,  370,  370,
      311,  370,  312,   44,   44,   44,  370,  370,   46,   48,

       44,   44,   44,  370,  370,  318,  314,  370,   48,  370,
       44,   44,   44,  315,   48,   46,  370,   44,   44,   44,
      370,  316,   46,  370,  370,   48,   44,   44,   44,  370,
      317,   46,   48,   44,   44,   44,  370,  370,   46,   44,
       44,   44,   48,  370,  323,  319,   44,   44,   44,   48,
      370,   46,   44,   44,   44,  370,  370,   46,   48,  370,
      370,   44,   44,   44,  370,   48,  326,  320,  370,  321,
      370,   48,   44,   44,   44,  370,  322,   46,   48,  370,
      370,   44,   44,   44,   48,  324,   46,   44,   44,   44,
      370,  325,   46,   48,   44,   44,   44,  370,  370,  330,

       44,   44,   44,  370,   48,   46,   44,   44,   44,  327,
      370,   46,  370,   48,  370,   44,   44,   44,  370,   48,
       46,  370,   44,   44,   44,  370,   48,   46,  370,  329,
      370,  370,   48,  370,  370,  370,  328,  370,   48,  370,
       44,   44,   44,  370,  331,   46,  370,   48,   44,   44,
       44,  370,  370,  336,   48,  370,  332,   44,   44,   44,
      370,  370,  337,   44,   44,   44,  370,  370,   46,  333,
      334,  370,   48,  370,   44,   44,   44,  370,  370,   46,
       48,   44,   44,   44,  370,  370,   46,  370,  335,   48,
      370,   44,   44,   44,  370,   48,   46,   44,   44,   44,

      370,  370,   46,  370,  370,  338,   48,   44,   44,   44,
      370,  370,   46,   48,  370,  370,  340,   44,   44,   44,
      370,  370,   46,   48,  370,  370,  339,  370,  370,   48,
      341,   44,   44,   44,  370,  370,   46,  370,  370,   48,
      342,  370,   44,   44,   44,  370,  343,   46,  370,   48,
       44,   44,   44,  370,  370,  347,   44,   44,   44,  370,
      370,   46,  370,   48,  344,   44,   44,   44,  370,  370,
       46,  370,  370,  370,   48,  370,  370,  346,  345,   44,
       44,   44,   48,  370,   46,  370,  370,  370,   48,   44,
       44,   44,  370,  370,   46,  370,  370,   48,  370,   44,

       44,   44,  370,  348,   46,   44,   44,   44,  370,  370,
       46,   48,  370,  370,   44,   44,   44,  349,  350,   46,
      370,   48,   44,   44,   44,  370,  370,   46,   44,   44,
       44,   48,  370,  356,  370,  370,  370,   48,  370,  351,
       44,   44,   44,  370,  370,   46,   48,   44,   44,   44,
      352,  370,   46,  370,   48,  370,  353,   44,   44,   44,
       48,  354,  359,  355,   44,   44,   44,  370,  370,  360,
      370,  370,   48,   44,   44,   44,  370,  370,   46,   48,
       44,   44,   44,  370,  370,   46,  370,  370,  370,   48,
      370,  357,   44,   44,   44,  370,   48,  363,  358,   44,

       44,   44,  370,  370,  364,   48,   44,   44,   44,  370,
      370,   46,   48,  370,  361,   44,   44,   44,  370,  362,
       46,   44,   44,   44,   48,  370,   46,   44,   44,   44,
      370,   48,  368,  370,  370,   44,   44,   44,   48,  370,
      369,  370,  370,  370,  370,  365,  370,   48,  370,  370,
      370,  370,  370,   48,  370,  370,  370,  370,  370,   48,
      370,  370,  370,  370,  370,  370,  366,   48,  370,  370,
      370,  370,  367,   36,   36,   36,   36,   45,   45,   45,
       45,   62,  370,   62,   62,   81,  370,  370,   81,   83,
       83,   83,   83,   87,   87,   87,   87,  113,  370,  113,

      113,   83,   83,  123,  123,  123,  123,   11,  370,  370,
      370,  370,  370,  370,  370,  370,  370,  370,  370,  370,
      370,  370,  370,  370,  370,  370,  370,  370,  370,  370,
      370,  370,  370,  370,  370,  370,  370,  370,  370,  370,
      370,  370,  370,  370,  370,  370,  370,  370,  370,  370,
      370,  370,  370,  370,  370,  370,  370,  370,  370,  370,
      370,  370,  370,  370,  370,  370,  370,  370
    } ;

static const flex_int16_t yy_chk[2569] =
    {   0,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        3,    3,    3,    4,    4,    4,    3,    9,    7,    4,
        5,    5,    8,    5,    5,    5,    5,    5,    5,    5,
        5,    5,    5,    5,   10,   13,   26,   13,    5,    5,
        9,    5,   21,   37,    5,   37,    5,   21,    5,   27,

       26,   31,   44,  218,    5,    5,    7,   10,    5,   28,
        8,   42,    5,   42,   32,   31,   17,    5,   17,   17,
       17,   17,   27,    5,    5,   15,   15,   15,   17,   44,
       15,   19,   28,   19,   19,   19,   19,   32,   20,   20,
       20,   20,   83,   19,   17,   33,   73,   25,   20,   25,
      189,   15,   25,   25,   25,   25,  159,   15,   75,   19,
      123,   15,   15,   15,   20,   15,   73,   15,   33,   83,
       15,   15,   15,   15,   15,  120,   15,   74,   15,   15,
       22,   75,   22,   22,   22,   22,   45,   45,   45,   48,
       78,   45,   22,   47,   47,   47,   48,   74,   47,   76,

       87,   49,   49,   49,   81,   80,   49,   43,   22,   50,
       50,   50,   41,   78,   50,   39,   48,   38,   45,   76,
       48,   51,   51,   51,   48,   47,   51,   71,   71,   71,
       71,   48,   47,   49,   48,   51,   48,   48,   52,   52,
       52,   50,   77,   52,   50,   53,   53,   53,  115,   49,
       53,  114,  117,   51,   55,   55,   55,   50,   24,   55,
       51,   14,   77,   51,   54,   54,   54,  118,  115,   54,
       52,   56,   56,   56,  114,  117,   56,   53,  116,   57,
       57,   57,  119,   52,   57,   11,   55,  118,    0,   55,
       58,   58,   58,   53,  116,   58,   54,   53,  119,   59,

       59,   59,   55,   56,   59,  153,   56,   54,   60,   60,
       60,   57,   54,   60,   61,   61,   61,    0,    0,   61,
        0,  153,   58,  156,    0,   58,    0,   63,   63,   63,
       63,   59,   57,   72,   72,   72,   72,   63,   59,  156,
       60,    0,    0,    0,    0,    0,   61,   59,    0,   61,
        0,   59,   59,   63,    0,   60,    0,    0,   64,   60,
       64,   64,   64,   64,    0,    0,   65,    0,   65,    0,
       64,   65,   65,   65,   65,   66,    0,   66,   66,   66,
       66,   67,   67,   67,   67,    0,   64,   66,   86,   86,
       86,   67,    0,   86,   88,   88,   88,    0,    0,   88,

       90,   90,   90,   66,    0,   90,    0,   67,    0,    0,
       91,   91,   91,    0,    0,   91,    0,    0,    0,    0,
       86,    0,   92,   92,   92,    0,   88,   92,    0,   93,
       93,   93,   90,    0,   93,    0,    0,    0,    0,    0,
       86,   89,   91,    0,    0,    0,    0,    0,   90,   89,
       89,   89,   89,    0,   92,    0,    0,   89,   89,   89,
       89,   93,   94,   94,   94,    0,    0,   94,   92,   92,
        0,   89,   89,   89,   89,   89,   89,   95,   95,   95,
        0,    0,   95,   96,   96,   96,    0,    0,   96,    0,
       97,   97,   97,    0,   94,   97,    0,    0,   94,   98,

       98,   98,    0,    0,   98,   99,   99,   99,    0,   95,
       99,  100,  100,  100,   95,   96,  100,    0,  101,  101,
      101,    0,   97,  101,  102,  102,  102,    0,    0,  102,
        0,   98,    0,    0,    0,    0,   96,   99,   97,    0,
        0,   99,    0,  100,  103,  103,  103,    0,    0,  103,
      101,   98,  100,  104,  104,  104,  102,    0,  104,  105,
      105,  105,  102,    0,  105,  101,  106,  106,  106,    0,
        0,  106,    0,  101,    0,    0,  103,    0,  107,  107,
      107,    0,    0,  107,    0,  104,    0,  108,  108,  108,
      103,  105,  108,    0,  109,  109,  109,    0,  106,  109,

        0,  110,  110,  110,    0,  104,  110,    0,    0,  105,
      107,  105,    0,    0,    0,  107,  111,  111,  111,  108,
      106,  111,  112,  112,  112,  108,  109,  112,    0,    0,
      109,    0,    0,  110,  122,  122,  122,    0,    0,  122,
        0,    0,    0,    0,  110,  129,  129,  129,  111,    0,
      129,    0,    0,    0,  112,  111,  127,  127,  127,    0,
        0,  127,    0,    0,    0,    0,  122,  112,    0,    0,
        0,  122,  126,  126,  126,  126,    0,  129,    0,    0,
      126,  126,  126,  126,  130,  130,  130,    0,  127,  130,
        0,  129,    0,    0,  126,  126,  126,  126,  126,  126,

      132,  132,  132,    0,    0,  132,    0,    0,  127,  133,
      133,  133,    0,    0,  133,    0,  130,  134,  134,  134,
        0,    0,  134,  135,  135,  135,    0,    0,  135,  136,
      136,  136,  132,    0,  136,    0,  130,  137,  137,  137,
        0,  133,  137,  138,  138,  138,    0,    0,  138,  134,
        0,    0,    0,  132,    0,  135,    0,    0,  133,    0,
        0,  136,    0,    0,    0,    0,    0,  135,  134,  137,
        0,  139,  139,  139,    0,  138,  139,    0,  136,    0,
      140,  140,  140,    0,  138,  140,    0,  137,  141,  141,
      141,    0,    0,  141,  142,  142,  142,    0,    0,  142,

      143,  143,  143,  139,    0,  143,  139,    0,  144,  144,
      144,    0,  140,  144,  145,  145,  145,    0,    0,  145,
      141,    0,    0,  146,  146,  146,  142,  141,  146,    0,
        0,  140,  143,  142,  140,    0,  147,  147,  147,    0,
      144,  147,    0,  144,    0,    0,  145,    0,    0,  143,
        0,  148,  148,  148,    0,  146,  148,    0,  149,  149,
      149,    0,  146,  149,    0,    0,  145,    0,  147,  150,
      150,  150,    0,    0,  150,    0,  151,  151,  151,    0,
      147,  151,    0,  148,  152,  152,  152,    0,    0,  152,
      149,  160,  160,  160,    0,    0,  160,    0,    0,  148,

        0,  150,  162,  162,  162,    0,    0,  162,  151,  149,
        0,    0,  162,  163,  163,  163,  152,    0,  163,    0,
        0,    0,    0,  160,  150,    0,  151,  152,  164,  164,
      164,    0,    0,  164,  162,    0,    0,    0,    0,  160,
      161,  161,  161,  161,    0,  163,    0,    0,  161,  161,
      161,  161,  163,  165,  165,  165,    0,    0,  165,    0,
      164,    0,  161,  161,  161,  161,  161,  161,  166,  166,
      166,    0,    0,  166,  167,  167,  167,    0,  164,  167,
        0,    0,    0,  166,  166,  165,  168,  168,  168,    0,
        0,  168,    0,    0,  165,    0,  169,  169,  169,    0,

      166,  169,    0,  170,  170,  170,  167,    0,  170,  171,
      171,  171,    0,    0,  171,    0,  167,    0,  168,  172,
      172,  172,    0,    0,  172,  173,  173,  173,  169,    0,
      173,  174,  174,  174,    0,  170,  174,  168,  170,    0,
        0,  171,  175,  175,  175,    0,    0,  175,  171,    0,
        0,  172,    0,  176,  176,  176,    0,  173,  176,    0,
      172,    0,    0,  174,  177,  177,  177,    0,  173,  177,
      174,    0,    0,    0,  175,  178,  178,  178,    0,    0,
      178,  179,  179,  179,    0,  176,  179,  175,    0,    0,
      180,  180,  180,    0,    0,  180,  177,  181,  181,  181,

        0,    0,  181,  182,  182,  182,    0,  178,  182,  183,
      183,  183,    0,  179,  183,    0,    0,  177,    0,    0,
      179,  178,  180,  184,  184,  184,    0,    0,  184,  181,
        0,    0,  185,  185,  185,  182,  181,  185,    0,    0,
      180,  183,  185,  186,  186,  186,  183,    0,  186,    0,
        0,    0,  190,  190,  190,  184,  182,  190,    0,    0,
      192,  192,  192,    0,  185,  192,  194,  194,  194,    0,
        0,  194,  193,  193,  193,  186,    0,  193,    0,    0,
        0,  186,    0,    0,  190,  195,  195,  195,    0,    0,
      195,    0,  192,    0,    0,    0,    0,    0,  194,  190,

      191,  191,  191,  191,  193,    0,    0,    0,  191,  191,
      191,  191,    0,  192,  194,    0,    0,  195,    0,  193,
        0,    0,  191,  191,  191,  191,  191,  191,    0,    0,
      195,  196,  196,  196,    0,    0,  196,  197,  197,  197,
        0,    0,  197,  198,  198,  198,    0,    0,  198,  199,
      199,  199,    0,    0,  199,  201,  201,  201,    0,  199,
      201,    0,    0,  196,    0,  202,  202,  202,    0,  197,
      202,  203,  203,  203,    0,  198,  203,  204,  204,  204,
        0,  199,  204,    0,    0,    0,    0,  201,  205,  205,
      205,    0,    0,  205,  206,  206,  206,  202,    0,  206,

        0,    0,    0,  203,    0,  201,    0,    0,    0,  204,
      203,  208,  208,  208,    0,  202,  208,  209,  209,  209,
      205,    0,  209,  210,  210,  210,  206,    0,  210,    0,
        0,    0,    0,    0,  204,  211,  211,  211,  205,    0,
      211,    0,    0,  208,    0,  212,  212,  212,    0,  209,
      212,    0,  213,  213,  213,  210,  209,  213,    0,  214,
      214,  214,    0,  208,  214,    0,    0,  211,    0,  216,
      216,  216,    0,  210,  216,    0,    0,  212,  211,    0,
      217,  217,  217,    0,  213,  217,    0,  219,  219,  219,
        0,  214,  219,  220,  220,  220,    0,  212,  220,    0,

        0,  216,    0,    0,  213,    0,  216,    0,    0,  214,
        0,    0,  217,    0,    0,  217,  221,  221,  221,  219,
        0,  221,    0,    0,    0,  220,    0,  219,  222,  222,
      222,    0,    0,  222,    0,  223,  223,  223,    0,    0,
      223,    0,  220,    0,  227,  227,  227,    0,  221,  227,
      228,  228,  228,    0,    0,  228,  229,  229,  229,    0,
      222,  229,    0,    0,  230,  230,  230,  223,  221,  230,
        0,    0,    0,  222,  223,    0,  227,    0,  231,  231,
      231,    0,  228,  231,    0,    0,    0,    0,  229,  227,
      232,  232,  232,    0,    0,  232,  230,    0,  234,  234,

      234,    0,  230,  234,    0,    0,  228,  229,  234,    0,
      231,  235,  235,  235,    0,    0,  235,  231,  236,  236,
      236,    0,  232,  236,  237,  237,  237,    0,    0,  237,
      234,    0,  234,    0,  238,  238,  238,    0,    0,  238,
      239,  239,  239,  235,  238,  239,  240,  240,  240,    0,
      236,  240,  241,  241,  241,    0,  237,  241,    0,  242,
      242,  242,    0,  235,  242,  236,  238,    0,    0,  244,
      244,  244,  239,    0,  244,    0,  237,    0,  240,    0,
      245,  245,  245,    0,  241,  245,    0,    0,    0,  240,
        0,  242,  246,  246,  246,    0,    0,  246,    0,    0,

      241,  244,    0,  247,  247,  247,    0,    0,  247,    0,
        0,  242,  245,  247,  248,  248,  248,    0,  245,  248,
      249,  249,  249,    0,  246,  249,  250,  250,  250,    0,
        0,  250,  251,  251,  251,  247,    0,  251,  252,  252,
      252,    0,    0,  252,    0,    0,  248,    0,  252,  253,
      253,  253,  249,    0,  253,  256,  256,  256,  250,    0,
      256,    0,    0,  249,  251,    0,    0,    0,  248,    0,
      252,    0,  257,  257,  257,    0,    0,  257,  258,  258,
      258,  253,    0,  258,  259,  259,  259,  256,    0,  259,
      260,  260,  260,    0,    0,  260,  261,  261,  261,    0,

        0,  261,    0,  256,  257,    0,  263,  263,  263,    0,
      258,  263,    0,  264,  264,  264,  259,  258,  264,    0,
      257,    0,  260,    0,  265,  265,  265,    0,  261,  265,
      267,  267,  267,    0,    0,  267,    0,    0,  263,  269,
      269,  269,  263,  261,  269,  264,  260,    0,  261,  261,
      270,  270,  270,    0,    0,  270,  265,    0,    0,    0,
      264,    0,  267,  265,    0,  267,    0,  271,  271,  271,
        0,  269,  271,  274,  274,  274,    0,    0,  274,  276,
      276,  276,  270,    0,  276,    0,  277,  277,  277,  270,
      269,  277,    0,  278,  278,  278,    0,    0,  278,  271,

        0,    0,    0,  271,    0,  274,    0,  280,  280,  280,
        0,  276,  280,    0,  281,  281,  281,    0,  277,  281,
        0,  282,  282,  282,  274,  278,  282,    0,  276,  283,
      283,  283,    0,    0,  283,  277,  284,  284,  284,  280,
        0,  284,    0,  278,    0,    0,  281,    0,    0,  281,
      285,  285,  285,  282,    0,  285,    0,  286,  286,  286,
        0,  283,  286,    0,  287,  287,  287,  286,  284,  287,
        0,  288,  288,  288,    0,  284,  288,  282,    0,  283,
        0,    0,  285,  289,  289,  289,    0,    0,  289,  286,
      290,  290,  290,    0,    0,  290,  287,    0,    0,  291,

      291,  291,  285,  288,  291,  292,  292,  292,    0,    0,
      292,    0,  293,  293,  293,  289,  287,  293,    0,  288,
        0,    0,  290,    0,  294,  294,  294,    0,  289,  294,
        0,  291,    0,    0,  296,  296,  296,  292,  291,  296,
      290,  297,  297,  297,  293,    0,  297,  298,  298,  298,
        0,    0,  298,  299,  299,  299,  294,  292,  299,    0,
        0,    0,    0,  299,  293,    0,  296,  300,  300,  300,
        0,    0,  300,  297,    0,  294,  301,  301,  301,  298,
      296,  301,  302,  302,  302,  299,    0,  302,    0,    0,
      297,    0,  298,  303,  303,  303,    0,    0,  303,  300,

      304,  304,  304,    0,    0,  304,  300,    0,  301,    0,
      305,  305,  305,  301,  302,  305,    0,  306,  306,  306,
        0,  302,  306,    0,    0,  303,  307,  307,  307,    0,
      303,  307,  304,  308,  308,  308,    0,    0,  308,  309,
      309,  309,  305,    0,  309,  305,  310,  310,  310,  306,
        0,  310,  311,  311,  311,    0,    0,  311,  307,    0,
        0,  312,  312,  312,    0,  308,  312,  306,    0,  307,
        0,  309,  313,  313,  313,    0,  308,  313,  310,    0,
        0,  314,  314,  314,  311,  310,  314,  315,  315,  315,
        0,  311,  315,  312,  316,  316,  316,    0,    0,  316,

      317,  317,  317,    0,  313,  317,  319,  319,  319,  313,
        0,  319,    0,  314,    0,  320,  320,  320,    0,  315,
      320,    0,  321,  321,  321,    0,  316,  321,    0,  315,
        0,    0,  317,    0,    0,    0,  314,    0,  319,    0,
      322,  322,  322,    0,  317,  322,    0,  320,  324,  324,
      324,    0,    0,  324,  321,    0,  319,  325,  325,  325,
        0,    0,  325,  327,  327,  327,    0,    0,  327,  320,
      321,    0,  322,    0,  328,  328,  328,    0,    0,  328,
      324,  329,  329,  329,    0,    0,  329,    0,  322,  325,
        0,  331,  331,  331,    0,  327,  331,  332,  332,  332,

        0,    0,  332,    0,    0,  327,  328,  333,  333,  333,
        0,    0,  333,  329,    0,    0,  329,  334,  334,  334,
        0,    0,  334,  331,    0,    0,  328,    0,    0,  332,
      331,  335,  335,  335,    0,    0,  335,    0,    0,  333,
      332,    0,  338,  338,  338,    0,  333,  338,    0,  334,
      339,  339,  339,    0,    0,  339,  340,  340,  340,    0,
        0,  340,    0,  335,  334,  341,  341,  341,    0,    0,
      341,    0,    0,    0,  338,    0,    0,  338,  335,  342,
      342,  342,  339,    0,  342,    0,    0,    0,  340,  343,
      343,  343,    0,    0,  343,    0,    0,  341,    0,  344,

      344,  344,    0,  340,  344,  345,  345,  345,    0,    0,
      345,  342,    0,    0,  346,  346,  346,  341,  342,  346,
        0,  343,  348,  348,  348,    0,    0,  348,  349,  349,
      349,  344,    0,  349,    0,    0,    0,  345,    0,  343,
      350,  350,  350,    0,    0,  350,  346,  351,  351,  351,
      344,    0,  351,    0,  348,    0,  345,  352,  352,  352,
      349,  346,  352,  348,  353,  353,  353,    0,    0,  353,
        0,    0,  350,  354,  354,  354,    0,    0,  354,  351,
      355,  355,  355,    0,    0,  355,    0,    0,    0,  352,
        0,  350,  357,  357,  357,    0,  353,  357,  351,  358,

      358,  358,    0,    0,  358,  354,  361,  361,  361,    0,
        0,  361,  355,    0,  354,  362,  362,  362,    0,  355,
      362,  365,  365,  365,  357,    0,  365,  366,  366,  366,
        0,  358,  366,    0,    0,  367,  367,  367,  361,    0,
      367,    0,    0,    0,    0,  361,    0,  362,    0,    0,
        0,    0,    0,  365,    0,    0,    0,    0,    0,  366,
        0,    0,    0,    0,    0,    0,  362,  367,    0,    0,
        0,    0,  365,  371,  371,  371,  371,  372,  372,  372,
      372,  373,    0,  373,  373,  374,    0,    0,  374,  375,
      375,  375,  375,  376,  376,  376,  376,  377,    0,  377,

      377,  378,  378,  379,  379,  379,  379,  370,  370,  370,
      370,  370,  370,  370,  370,  370,  370,  370,  370,  370,
      370,  370,  370,  370,  370,  370,  370,  370,  370,  370,
      370,  370,  370,  370,  370,  370,  370,  370,  370,  370,
      370,  370,  370,  370,  370,  370,  370,  370,  370,  370,
      370,  370,  370,  370,  370,  370,  370,  370,  370,  370,
      370,  370,  370,  370,  370,  370,  370,  370
    } ;

static yy_state_type yy_last_accepting_state;
static char *yy_last_accepting_cpos;

extern int yy_flex_debug;
int yy_flex_debug = 1;

static const flex_int16_t yy_rule_linenum[64] =
    {   0,
      135,  137,  139,  144,  145,  150,  151,  152,  164,  167,
      172,  179,  188,  200,  212,  222,  232,  242,  251,  260,
      269,  278,  287,  296,  305,  314,  323,  332,  341,  350,
      359,  368,  377,  386,  395,  404,  413,  422,  431,  440,
      449,  458,  467,  476,  485,  586,  602,  651,  659,  674,
      675,  676,  677,  678,  679,  681,  699,  712,  717,  721,
      723,  725,  727
    } ;

/* The intent behind this definition is that it'll catch
 * any uses of REJECT which flex missed.
 */
#define REJECT reject_used_but_not_detected
#define yymore() yymore_used_but_not_detected
#define YY_MORE_ADJ 0
#define YY_RESTORE_YY_MORE_OFFSET
char *yytext;
#line 1 "netconf_lexer.ll"
/* Copyright (C) 2018-2023 Internet Systems Consortium, Inc. ("ISC")

   This Source Code Form is subject to the terms of the Mozilla Public
   License, v. 2.0. If a copy of the MPL was not distributed with this
   file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#line 8 "netconf_lexer.ll"

/* Generated files do not make clang static analyser so happy */
#ifndef __clang_analyzer__

#include <cctype>
#include <cerrno>
#include <climits>
#include <cstdint>
#include <cstdlib>
#include <string>
#include <netconf/parser_context.h>
#include <asiolink/io_address.h>
#include <boost/lexical_cast.hpp>
#include <exceptions/exceptions.h>
#include <cc/dhcp_config_error.h>

/* Please avoid C++ style comments (// ... eol) as they break flex 2.6.2 */

/* Work around an incompatibility in flex (at least versions
   2.5.31 through 2.5.33): it generates code that does
   not conform to C89.  See Debian bug 333231
   <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=333231>. */
# undef yywrap
# define yywrap() 1

namespace {

bool start_token_flag = false;

isc::netconf::ParserContext::ParserType start_token_value;
unsigned int comment_start_line = 0;

using namespace isc;
using isc::netconf::NetconfParser;

};

/* To avoid the call to exit... oops! */
#define YY_FATAL_ERROR(msg) isc::netconf::ParserContext::fatal(msg)
#line 1522 "netconf_lexer.cc"
/* noyywrap disables automatic rewinding for the next file to parse. Since we
   always parse only a single string, there's no need to do any wraps. And
   using yywrap requires linking with -lfl, which provides the default yywrap
   implementation that always returns 1 anyway. */
/* nounput simplifies the lexer, by removing support for putting a character
   back into the input stream. We never use such capability anyway. */
/* batch means that we'll never use the generated lexer interactively. */
/* avoid to get static global variables to remain with C++. */
/* in last resort %option reentrant */
/* Enables debug mode. To see the debug messages, one needs to also set
   yy_flex_debug to 1, then the debug messages will be printed on stderr. */
/* I have no idea what this option does, except it was specified in the bison
   examples and Postgres folks added it to remove gcc 4.3 warnings. Let's
   be on the safe side and keep it. */
#define YY_NO_INPUT 1

/* These are not token expressions yet, just convenience expressions that
   can be used during actual token definitions. Note some can match
   incorrect inputs (e.g., IP addresses) which must be checked. */
/* for errors */
#line 98 "netconf_lexer.ll"
/* This code run each time a pattern is matched. It updates the location
   by moving it ahead by yyleng bytes. yyleng specifies the length of the
   currently matched token. */
#define YY_USER_ACTION  driver.loc_.columns(yyleng);
#line 1548 "netconf_lexer.cc"
#line 1549 "netconf_lexer.cc"

#define INITIAL 0
#define COMMENT 1
#define DIR_ENTER 2
#define DIR_INCLUDE 3
#define DIR_EXIT 4

#ifndef YY_NO_UNISTD_H
/* Special case for "unistd.h", since it is non-ANSI. We include it way
 * down here because we want the user's section 1 to have been scanned first.
 * The user has a chance to override it with an option.
 */
/* %if-c-only */
#include <unistd.h>
/* %endif */
/* %if-c++-only */
/* %endif */
#endif

#ifndef YY_EXTRA_TYPE
#define YY_EXTRA_TYPE void *
#endif

/* %if-c-only Reentrant structure and macros (non-C++). */
/* %if-reentrant */
/* %if-c-only */

static int yy_init_globals ( void );

/* %endif */
/* %if-reentrant */
/* %endif */
/* %endif End reentrant structures and macros. */

/* Accessor methods to globals.
   These are made visible to non-reentrant scanners for convenience. */

int yylex_destroy ( void );

int yyget_debug ( void );

void yyset_debug ( int debug_flag  );

YY_EXTRA_TYPE yyget_extra ( void );

void yyset_extra ( YY_EXTRA_TYPE user_defined  );

FILE *yyget_in ( void );

void yyset_in  ( FILE * _in_str  );

FILE *yyget_out ( void );

void yyset_out  ( FILE * _out_str  );

			int yyget_leng ( void );

char *yyget_text ( void );

int yyget_lineno ( void );

void yyset_lineno ( int _line_number  );

/* %if-bison-bridge */
/* %endif */

/* Macros after this point can all be overridden by user definitions in
 * section 1.
 */

#ifndef YY_SKIP_YYWRAP
#ifdef __cplusplus
extern "C" int yywrap ( void );
#else
extern int yywrap ( void );
#endif
#endif

/* %not-for-header */
#ifndef YY_NO_UNPUT
    
#endif
/* %ok-for-header */

/* %endif */

#ifndef yytext_ptr
static void yy_flex_strncpy ( char *, const char *, int );
#endif

#ifdef YY_NEED_STRLEN
static int yy_flex_strlen ( const char * );
#endif

#ifndef YY_NO_INPUT
/* %if-c-only Standard (non-C++) definition */
/* %not-for-header */
#ifdef __cplusplus
static int yyinput ( void );
#else
static int input ( void );
#endif
/* %ok-for-header */

/* %endif */
#endif

/* %if-c-only */

/* %endif */

/* Amount of stuff to slurp up with each read. */
#ifndef YY_READ_BUF_SIZE
#ifdef __ia64__
/* On IA-64, the buffer size is 16k, not 8k */
#define YY_READ_BUF_SIZE 16384
#else
#define YY_READ_BUF_SIZE 8192
#endif /* __ia64__ */
#endif

/* Copy whatever the last rule matched to the standard output. */
#ifndef ECHO
/* %if-c-only Standard (non-C++) definition */
/* This used to be an fputs(), but since the string might contain NUL's,
 * we now use fwrite().
 */
#define ECHO do { if (fwrite( yytext, (size_t) yyleng, 1, yyout )) {} } while (0)
/* %endif */
/* %if-c++-only C++ definition */
/* %endif */
#endif

/* Gets input and stuffs it into "buf".  number of characters read, or YY_NULL,
 * is returned in "result".
 */
#ifndef YY_INPUT
#define YY_INPUT(buf,result,max_size) \
/* %% [5.0] fread()/read() definition of YY_INPUT goes here unless we're doing C++ \ */\
	if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
		{ \
		int c = '*'; \
		int n; \
		for ( n = 0; n < max_size && \
			     (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
			buf[n] = (char) c; \
		if ( c == '\n' ) \
			buf[n++] = (char) c; \
		if ( c == EOF && ferror( yyin ) ) \
			YY_FATAL_ERROR( "input in flex scanner failed" ); \
		result = n; \
		} \
	else \
		{ \
		errno=0; \
		while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \
			{ \
			if( errno != EINTR) \
				{ \
				YY_FATAL_ERROR( "input in flex scanner failed" ); \
				break; \
				} \
			errno=0; \
			clearerr(yyin); \
			} \
		}\
\
/* %if-c++-only C++ definition \ */\
/* %endif */

#endif

/* No semi-colon after return; correct usage is to write "yyterminate();" -
 * we don't want an extra ';' after the "return" because that will cause
 * some compilers to complain about unreachable statements.
 */
#ifndef yyterminate
#define yyterminate() return YY_NULL
#endif

/* Number of entries by which start-condition stack grows. */
#ifndef YY_START_STACK_INCR
#define YY_START_STACK_INCR 25
#endif

/* Report a fatal error. */
#ifndef YY_FATAL_ERROR
/* %if-c-only */
#define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
/* %endif */
/* %if-c++-only */
/* %endif */
#endif

/* %if-tables-serialization structures and prototypes */
/* %not-for-header */
/* %ok-for-header */

/* %not-for-header */
/* %tables-yydmap generated elements */
/* %endif */
/* end tables serialization structures and prototypes */

/* %ok-for-header */

/* Default declaration of generated scanner - a define so the user can
 * easily add parameters.
 */
#ifndef YY_DECL
#define YY_DECL_IS_OURS 1
/* %if-c-only Standard (non-C++) definition */

extern int yylex (void);

#define YY_DECL int yylex (void)
/* %endif */
/* %if-c++-only C++ definition */
/* %endif */
#endif /* !YY_DECL */

/* Code executed at the beginning of each rule, after yytext and yyleng
 * have been set up.
 */
#ifndef YY_USER_ACTION
#define YY_USER_ACTION
#endif

/* Code executed at the end of each rule. */
#ifndef YY_BREAK
#define YY_BREAK /*LINTED*/break;
#endif

/* %% [6.0] YY_RULE_SETUP definition goes here */
#define YY_RULE_SETUP \
	YY_USER_ACTION

/* %not-for-header */
/** The main scanner function which does all the work.
 */
YY_DECL
{
	yy_state_type yy_current_state;
	char *yy_cp, *yy_bp;
	int yy_act;
    
	if ( !(yy_init) )
		{
		(yy_init) = 1;

#ifdef YY_USER_INIT
		YY_USER_INIT;
#endif

		if ( ! (yy_start) )
			(yy_start) = 1;	/* first start state */

		if ( ! yyin )
/* %if-c-only */
			yyin = stdin;
/* %endif */
/* %if-c++-only */
/* %endif */

		if ( ! yyout )
/* %if-c-only */
			yyout = stdout;
/* %endif */
/* %if-c++-only */
/* %endif */

		if ( ! YY_CURRENT_BUFFER ) {
			yyensure_buffer_stack ();
			YY_CURRENT_BUFFER_LVALUE =
				yy_create_buffer( yyin, YY_BUF_SIZE );
		}

		yy_load_buffer_state(  );
		}

	{
/* %% [7.0] user's declarations go here */
#line 104 "netconf_lexer.ll"



#line 108 "netconf_lexer.ll"
    /* This part of the code is copied over to the verbatim to the top
       of the generated yylex function. Explanation:
       http://www.gnu.org/software/bison/manual/html_node/Multiple-start_002dsymbols.html */

    /* Code run each time yylex is called. */
    driver.loc_.step();

    /* We currently have 3 points of entries defined:
       START_JSON - which expects any valid JSON
       START_NETCONF - which expects full configuration (with outer map and Netconf
                     object in it.
       START_SUB_NETCONF - which expects only content of the Netconf, this is
                         primarily useful for testing. */
    if (start_token_flag) {
        start_token_flag = false;
        switch (start_token_value) {
        case ParserContext::PARSER_JSON:
        default:
            return NetconfParser::make_START_JSON(driver.loc_);
        case ParserContext::PARSER_NETCONF:
            return NetconfParser::make_START_NETCONF(driver.loc_);
        case ParserContext::PARSER_SUB_NETCONF:
            return NetconfParser::make_START_SUB_NETCONF(driver.loc_);
        }
    }


#line 1863 "netconf_lexer.cc"

	while ( /*CONSTCOND*/1 )		/* loops until end-of-file is reached */
		{
/* %% [8.0] yymore()-related code goes here */
		yy_cp = (yy_c_buf_p);

		/* Support of yytext. */
		*yy_cp = (yy_hold_char);

		/* yy_bp points to the position in yy_ch_buf of the start of
		 * the current run.
		 */
		yy_bp = yy_cp;

/* %% [9.0] code to set up and find next match goes here */
		yy_current_state = (yy_start);
yy_match:
		do
			{
			YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ;
			if ( yy_accept[yy_current_state] )
				{
				(yy_last_accepting_state) = yy_current_state;
				(yy_last_accepting_cpos) = yy_cp;
				}
			while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
				{
				yy_current_state = (int) yy_def[yy_current_state];
				if ( yy_current_state >= 371 )
					yy_c = yy_meta[yy_c];
				}
			yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
			++yy_cp;
			}
		while ( yy_current_state != 370 );
		yy_cp = (yy_last_accepting_cpos);
		yy_current_state = (yy_last_accepting_state);

yy_find_action:
/* %% [10.0] code to find the action number goes here */
		yy_act = yy_accept[yy_current_state];

		YY_DO_BEFORE_ACTION;

/* %% [11.0] code for yylineno update goes here */

do_action:	/* This label is used only to access EOF actions. */

/* %% [12.0] debug code goes here */
		if ( yy_flex_debug )
			{
			if ( yy_act == 0 )
				fprintf( stderr, "--scanner backing up\n" );
			else if ( yy_act < 64 )
				fprintf( stderr, "--accepting rule at line %ld (\"%s\")\n",
				         (long)yy_rule_linenum[yy_act], yytext );
			else if ( yy_act == 64 )
				fprintf( stderr, "--accepting default rule (\"%s\")\n",
				         yytext );
			else if ( yy_act == 65 )
				fprintf( stderr, "--(end of buffer or a NUL)\n" );
			else
				fprintf( stderr, "--EOF (start condition %d)\n", YY_START );
			}

		switch ( yy_act )
	{ /* beginning of action switch */
/* %% [13.0] actions go here */
			case 0: /* must back up */
			/* undo the effects of YY_DO_BEFORE_ACTION */
			*yy_cp = (yy_hold_char);
			yy_cp = (yy_last_accepting_cpos);
			yy_current_state = (yy_last_accepting_state);
			goto yy_find_action;

case 1:
YY_RULE_SETUP
#line 135 "netconf_lexer.ll"
;
	YY_BREAK
case 2:
YY_RULE_SETUP
#line 137 "netconf_lexer.ll"
;
	YY_BREAK
case 3:
YY_RULE_SETUP
#line 139 "netconf_lexer.ll"
{
  BEGIN(COMMENT);
  comment_start_line = driver.loc_.end.line;;
}
	YY_BREAK
case 4:
YY_RULE_SETUP
#line 144 "netconf_lexer.ll"
BEGIN(INITIAL);
	YY_BREAK
case 5:
YY_RULE_SETUP
#line 145 "netconf_lexer.ll"
;
	YY_BREAK
case YY_STATE_EOF(COMMENT):
#line 146 "netconf_lexer.ll"
{
    isc_throw(ParseError, "Comment not closed. (/* in line " << comment_start_line);
}
	YY_BREAK
case 6:
YY_RULE_SETUP
#line 150 "netconf_lexer.ll"
BEGIN(DIR_ENTER);
	YY_BREAK
case 7:
YY_RULE_SETUP
#line 151 "netconf_lexer.ll"
BEGIN(DIR_INCLUDE);
	YY_BREAK
case 8:
YY_RULE_SETUP
#line 152 "netconf_lexer.ll"
{
    /* Include directive. */

    /* Extract the filename. */
    std::string tmp(yytext+1);
    tmp.resize(tmp.size() - 1);

    driver.includeFile(tmp);
}
	YY_BREAK
case YY_STATE_EOF(DIR_ENTER):
case YY_STATE_EOF(DIR_INCLUDE):
case YY_STATE_EOF(DIR_EXIT):
#line 161 "netconf_lexer.ll"
{
    isc_throw(ParseError, "Directive not closed.");
}
	YY_BREAK
case 9:
YY_RULE_SETUP
#line 164 "netconf_lexer.ll"
BEGIN(INITIAL);
	YY_BREAK
case 10:
YY_RULE_SETUP
#line 167 "netconf_lexer.ll"
{
    /* Ok, we found a with space. Let's ignore it and update loc variable. */
    driver.loc_.step();
}
	YY_BREAK
case 11:
/* rule 11 can match eol */
YY_RULE_SETUP
#line 172 "netconf_lexer.ll"
{
    /* Newline found. Let's update the location and continue. */
    driver.loc_.lines(yyleng);
    driver.loc_.step();
}
	YY_BREAK
case 12:
YY_RULE_SETUP
#line 179 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::CONFIG:
        return NetconfParser::make_NETCONF(driver.loc_);
    default:
        return NetconfParser::make_STRING("Netconf", driver.loc_);
    }
}
	YY_BREAK
case 13:
YY_RULE_SETUP
#line 188 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::NETCONF:
    case ParserContext::SERVER:
    case ParserContext::CONTROL_SOCKET:
    case ParserContext::LOGGERS:
        return NetconfParser::make_USER_CONTEXT(driver.loc_);
    default:
        return NetconfParser::make_STRING("user-context", driver.loc_);
    }
}
	YY_BREAK
case 14:
YY_RULE_SETUP
#line 200 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::NETCONF:
    case ParserContext::SERVER:
    case ParserContext::CONTROL_SOCKET:
    case ParserContext::LOGGERS:
        return NetconfParser::make_COMMENT(driver.loc_);
    default:
        return NetconfParser::make_STRING("comment", driver.loc_);
    }
}
	YY_BREAK
case 15:
YY_RULE_SETUP
#line 212 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::NETCONF:
    case ParserContext::SERVER:
        return NetconfParser::make_BOOT_UPDATE(driver.loc_);
    default:
        return NetconfParser::make_STRING("boot-update", driver.loc_);
    }
}
	YY_BREAK
case 16:
YY_RULE_SETUP
#line 222 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::NETCONF:
    case ParserContext::SERVER:
        return NetconfParser::make_SUBSCRIBE_CHANGES(driver.loc_);
    default:
        return NetconfParser::make_STRING("subscribe-changes", driver.loc_);
    }
}
	YY_BREAK
case 17:
YY_RULE_SETUP
#line 232 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::NETCONF:
    case ParserContext::SERVER:
        return NetconfParser::make_VALIDATE_CHANGES(driver.loc_);
    default:
        return NetconfParser::make_STRING("validate-changes", driver.loc_);
    }
}
	YY_BREAK
case 18:
YY_RULE_SETUP
#line 242 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::NETCONF:
        return NetconfParser::make_MANAGED_SERVERS(driver.loc_);
    default:
        return NetconfParser::make_STRING("managed-servers", driver.loc_);
    }
}
	YY_BREAK
case 19:
YY_RULE_SETUP
#line 251 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::MANAGED_SERVERS:
        return NetconfParser::make_DHCP4_SERVER(driver.loc_);
    default:
        return NetconfParser::make_STRING("dhcp4", driver.loc_);
    }
}
	YY_BREAK
case 20:
YY_RULE_SETUP
#line 260 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::MANAGED_SERVERS:
        return NetconfParser::make_DHCP6_SERVER(driver.loc_);
    default:
        return NetconfParser::make_STRING("dhcp6", driver.loc_);
    }
}
	YY_BREAK
case 21:
YY_RULE_SETUP
#line 269 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::MANAGED_SERVERS:
        return NetconfParser::make_D2_SERVER(driver.loc_);
    default:
        return NetconfParser::make_STRING("d2", driver.loc_);
    }
}
	YY_BREAK
case 22:
YY_RULE_SETUP
#line 278 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::MANAGED_SERVERS:
        return NetconfParser::make_CA_SERVER(driver.loc_);
    default:
        return NetconfParser::make_STRING("ca", driver.loc_);
    }
}
	YY_BREAK
case 23:
YY_RULE_SETUP
#line 287 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::SERVER:
        return NetconfParser::make_MODEL(driver.loc_);
    default:
        return NetconfParser::make_STRING("model", driver.loc_);
    }
}
	YY_BREAK
case 24:
YY_RULE_SETUP
#line 296 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::SERVER:
        return NetconfParser::make_CONTROL_SOCKET(driver.loc_);
    default:
        return NetconfParser::make_STRING("control-socket", driver.loc_);
    }
}
	YY_BREAK
case 25:
YY_RULE_SETUP
#line 305 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::SOCKET_TYPE:
        return NetconfParser::make_UNIX(driver.loc_);
    default:
        return NetconfParser::make_STRING("unix", driver.loc_);
    }
}
	YY_BREAK
case 26:
YY_RULE_SETUP
#line 314 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::SOCKET_TYPE:
        return NetconfParser::make_HTTP(driver.loc_);
    default:
        return NetconfParser::make_STRING("http", driver.loc_);
    }
}
	YY_BREAK
case 27:
YY_RULE_SETUP
#line 323 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::SOCKET_TYPE:
        return NetconfParser::make_STDOUT(driver.loc_);
    default:
        return NetconfParser::make_STRING("stdout", driver.loc_);
    }
}
	YY_BREAK
case 28:
YY_RULE_SETUP
#line 332 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::CONTROL_SOCKET:
        return NetconfParser::make_SOCKET_TYPE(driver.loc_);
    default:
        return NetconfParser::make_STRING("socket-type", driver.loc_);
    }
}
	YY_BREAK
case 29:
YY_RULE_SETUP
#line 341 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::CONTROL_SOCKET:
        return NetconfParser::make_SOCKET_NAME(driver.loc_);
    default:
        return NetconfParser::make_STRING("socket-name", driver.loc_);
    }
}
	YY_BREAK
case 30:
YY_RULE_SETUP
#line 350 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::CONTROL_SOCKET:
        return NetconfParser::make_SOCKET_URL(driver.loc_);
    default:
        return NetconfParser::make_STRING("socket-url", driver.loc_);
    }
}
	YY_BREAK
case 31:
YY_RULE_SETUP
#line 359 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::NETCONF:
        return NetconfParser::make_HOOKS_LIBRARIES(driver.loc_);
    default:
        return NetconfParser::make_STRING("hooks-libraries", driver.loc_);
    }
}
	YY_BREAK
case 32:
YY_RULE_SETUP
#line 368 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::HOOKS_LIBRARIES:
        return NetconfParser::make_LIBRARY(driver.loc_);
    default:
        return NetconfParser::make_STRING("library", driver.loc_);
    }
}
	YY_BREAK
case 33:
YY_RULE_SETUP
#line 377 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::HOOKS_LIBRARIES:
        return NetconfParser::make_PARAMETERS(driver.loc_);
    default:
        return NetconfParser::make_STRING("parameters", driver.loc_);
    }
}
	YY_BREAK
case 34:
YY_RULE_SETUP
#line 386 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::NETCONF:
        return NetconfParser::make_LOGGERS(driver.loc_);
    default:
        return NetconfParser::make_STRING("loggers", driver.loc_);
    }
}
	YY_BREAK
case 35:
YY_RULE_SETUP
#line 395 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::LOGGERS:
        return NetconfParser::make_NAME(driver.loc_);
    default:
        return NetconfParser::make_STRING("name", driver.loc_);
    }
}
	YY_BREAK
case 36:
YY_RULE_SETUP
#line 404 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::LOGGERS:
        return NetconfParser::make_OUTPUT_OPTIONS(driver.loc_);
    default:
        return NetconfParser::make_STRING("output_options", driver.loc_);
    }
}
	YY_BREAK
case 37:
YY_RULE_SETUP
#line 413 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::LOGGERS:
        return NetconfParser::make_OUTPUT_OPTIONS(driver.loc_);
    default:
        return NetconfParser::make_STRING("output-options", driver.loc_);
    }
}
	YY_BREAK
case 38:
YY_RULE_SETUP
#line 422 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::OUTPUT_OPTIONS:
        return NetconfParser::make_OUTPUT(driver.loc_);
    default:
        return NetconfParser::make_STRING("output", driver.loc_);
    }
}
	YY_BREAK
case 39:
YY_RULE_SETUP
#line 431 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::OUTPUT_OPTIONS:
        return NetconfParser::make_FLUSH(driver.loc_);
    default:
        return NetconfParser::make_STRING("flush", driver.loc_);
    }
}
	YY_BREAK
case 40:
YY_RULE_SETUP
#line 440 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::OUTPUT_OPTIONS:
        return NetconfParser::make_MAXSIZE(driver.loc_);
    default:
        return NetconfParser::make_STRING("maxsize", driver.loc_);
    }
}
	YY_BREAK
case 41:
YY_RULE_SETUP
#line 449 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::OUTPUT_OPTIONS:
        return NetconfParser::make_MAXVER(driver.loc_);
    default:
        return NetconfParser::make_STRING("maxver", driver.loc_);
    }
}
	YY_BREAK
case 42:
YY_RULE_SETUP
#line 458 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::OUTPUT_OPTIONS:
        return NetconfParser::make_PATTERN(driver.loc_);
    default:
        return NetconfParser::make_STRING("pattern", driver.loc_);
    }
}
	YY_BREAK
case 43:
YY_RULE_SETUP
#line 467 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::LOGGERS:
        return NetconfParser::make_DEBUGLEVEL(driver.loc_);
    default:
        return NetconfParser::make_STRING("debuglevel", driver.loc_);
    }
}
	YY_BREAK
case 44:
YY_RULE_SETUP
#line 476 "netconf_lexer.ll"
{
    switch(driver.ctx_) {
    case ParserContext::LOGGERS:
        return NetconfParser::make_SEVERITY(driver.loc_);
    default:
        return NetconfParser::make_STRING("severity", driver.loc_);
    }
}
	YY_BREAK
case 45:
YY_RULE_SETUP
#line 485 "netconf_lexer.ll"
{
    /* A string has been matched. It contains the actual string and single quotes.
       We need to get those quotes out of the way and just use its content, e.g.
       for 'foo' we should get foo */
    std::string raw(yytext+1);
    size_t len = raw.size() - 1;
    raw.resize(len);
    std::string decoded;
    decoded.reserve(len);
    for (size_t pos = 0; pos < len; ++pos) {
        int b = 0;
        char c = raw[pos];
        switch (c) {
        case '"':
            /* impossible condition */
            driver.error(driver.loc_, "Bad quote in \"" + raw + "\"");
            break;
        case '\\':
            ++pos;
            if (pos >= len) {
                /* impossible condition */
                driver.error(driver.loc_, "Overflow escape in \"" + raw + "\"");
            }
            c = raw[pos];
            switch (c) {
            case '"':
            case '\\':
            case '/':
                decoded.push_back(c);
                break;
            case 'b':
                decoded.push_back('\b');
                break;
            case 'f':
                decoded.push_back('\f');
                break;
            case 'n':
                decoded.push_back('\n');
                break;
            case 'r':
                decoded.push_back('\r');
                break;
            case 't':
                decoded.push_back('\t');
                break;
            case 'u':
                /* support only \u0000 to \u00ff */
                ++pos;
                if (pos + 4 > len) {
                    /* impossible condition */
                    driver.error(driver.loc_,
                                 "Overflow unicode escape in \"" + raw + "\"");
                }
                if ((raw[pos] != '0') || (raw[pos + 1] != '0')) {
                    driver.error(driver.loc_,
                    "Unsupported unicode escape in \"" + raw + "\"",
                    pos + 1);
                }
                pos += 2;
                c = raw[pos];
                if ((c >= '0') && (c <= '9')) {
                    b = (c - '0') << 4;
                } else if ((c >= 'A') && (c <= 'F')) {
                    b = (c - 'A' + 10) << 4;
                } else if ((c >= 'a') && (c <= 'f')) {
                    b = (c - 'a' + 10) << 4;
                } else {
                    /* impossible condition */
                    driver.error(driver.loc_, "Not hexadecimal in unicode escape in \"" + raw + "\"");
                }
                pos++;
                c = raw[pos];
                if ((c >= '0') && (c <= '9')) {
                    b |= c - '0';
                } else if ((c >= 'A') && (c <= 'F')) {
                    b |= c - 'A' + 10;
                } else if ((c >= 'a') && (c <= 'f')) {
                    b |= c - 'a' + 10;
                } else {
                    /* impossible condition */
                    driver.error(driver.loc_, "Not hexadecimal in unicode escape in \"" + raw + "\"");
                }
                decoded.push_back(static_cast<char>(b & 0xff));
                break;
            default:
                /* impossible condition */
                driver.error(driver.loc_, "Bad escape in \"" + raw + "\"");
            }
            break;
        default:
            if ((c >= 0) && (c < 0x20)) {
                /* impossible condition */
                driver.error(driver.loc_, "Invalid control in \"" + raw + "\"");
            }
            decoded.push_back(c);
        }
    }

    return NetconfParser::make_STRING(decoded, driver.loc_);
}
	YY_BREAK
case 46:
/* rule 46 can match eol */
YY_RULE_SETUP
#line 586 "netconf_lexer.ll"
{
    /* Bad string with a forbidden control character inside */
    std::string raw(yytext+1);
    size_t len = raw.size() - 1;
    size_t pos = 0;
    for (; pos < len; ++pos) {
        char c = raw[pos];
        if ((c >= 0) && (c < 0x20)) {
            break;
        }
    }
    driver.error(driver.loc_,
                 "Invalid control in " + std::string(yytext),
                 pos + 1);
}
	YY_BREAK
case 47:
/* rule 47 can match eol */
YY_RULE_SETUP
#line 602 "netconf_lexer.ll"
{
    /* Bad string with a bad escape inside */
    std::string raw(yytext+1);
    size_t len = raw.size() - 1;
    size_t pos = 0;
    bool found = false;
    for (; pos < len; ++pos) {
        if (found) {
            break;
        }
        char c = raw[pos];
        if (c == '\\') {
            ++pos;
            c = raw[pos];
            switch (c) {
            case '"':
            case '\\':
            case '/':
            case 'b':
            case 'f':
            case 'n':
            case 'r':
            case 't':
                break;
            case 'u':
                if ((pos + 4 > len) ||
                    !std::isxdigit(raw[pos + 1]) ||
                    !std::isxdigit(raw[pos + 2]) ||
                    !std::isxdigit(raw[pos + 3]) ||
                    !std::isxdigit(raw[pos + 4])) {
                    found = true;
                }
                break;
            default:
                found = true;
                break;
            }
        }
    }
    /* The rule stops on the first " including on \" so add ... in this case */
    std::string trailer = "";
    if (raw[len - 1] == '\\') {
        trailer = "...";
    }
    driver.error(driver.loc_,
                 "Bad escape in " + std::string(yytext) + trailer,
                 pos);
}
	YY_BREAK
case 48:
YY_RULE_SETUP
#line 651 "netconf_lexer.ll"
{
    /* Bad string with an open escape at the end */
    std::string raw(yytext+1);
    driver.error(driver.loc_,
                 "Overflow escape in " + std::string(yytext),
                 raw.size() + 1);
}
	YY_BREAK
case 49:
YY_RULE_SETUP
#line 659 "netconf_lexer.ll"
{
    /* Bad string with an open unicode escape at the end */
    std::string raw(yytext+1);
    size_t pos = raw.size() - 1;
    for (; pos > 0; --pos) {
        char c = raw[pos];
        if (c == 'u') {
            break;
        }
    }
    driver.error(driver.loc_,
                 "Overflow unicode escape in " + std::string(yytext),
                 pos + 1);
}
	YY_BREAK
case 50:
YY_RULE_SETUP
#line 674 "netconf_lexer.ll"
{ return NetconfParser::make_LSQUARE_BRACKET(driver.loc_); }
	YY_BREAK
case 51:
YY_RULE_SETUP
#line 675 "netconf_lexer.ll"
{ return NetconfParser::make_RSQUARE_BRACKET(driver.loc_); }
	YY_BREAK
case 52:
YY_RULE_SETUP
#line 676 "netconf_lexer.ll"
{ return NetconfParser::make_LCURLY_BRACKET(driver.loc_); }
	YY_BREAK
case 53:
YY_RULE_SETUP
#line 677 "netconf_lexer.ll"
{ return NetconfParser::make_RCURLY_BRACKET(driver.loc_); }
	YY_BREAK
case 54:
YY_RULE_SETUP
#line 678 "netconf_lexer.ll"
{ return NetconfParser::make_COMMA(driver.loc_); }
	YY_BREAK
case 55:
YY_RULE_SETUP
#line 679 "netconf_lexer.ll"
{ return NetconfParser::make_COLON(driver.loc_); }
	YY_BREAK
case 56:
YY_RULE_SETUP
#line 681 "netconf_lexer.ll"
{
    /* An integer was found. */
    std::string tmp(yytext);
    int64_t integer = 0;
    try {
        /* In substring we want to use negative values (e.g. -1).
           In enterprise-id we need to use values up to 0xffffffff.
           To cover both of those use cases, we need at least
           int64_t. */
        integer = boost::lexical_cast<int64_t>(tmp);
    } catch (const boost::bad_lexical_cast &) {
        driver.error(driver.loc_, "Failed to convert " + tmp + " to an integer.");
    }

    /* The parser needs the string form as double conversion is no lossless */
    return NetconfParser::make_INTEGER(integer, driver.loc_);
}
	YY_BREAK
case 57:
YY_RULE_SETUP
#line 699 "netconf_lexer.ll"
{
    /* A floating point was found. */
    std::string tmp(yytext);
    double fp = 0.0;
    try {
        fp = boost::lexical_cast<double>(tmp);
    } catch (const boost::bad_lexical_cast &) {
        driver.error(driver.loc_, "Failed to convert " + tmp + " to a floating point.");
    }

    return NetconfParser::make_FLOAT(fp, driver.loc_);
}
	YY_BREAK
case 58:
YY_RULE_SETUP
#line 712 "netconf_lexer.ll"
{
    string tmp(yytext);
    return NetconfParser::make_BOOLEAN(tmp == "true", driver.loc_);
}
	YY_BREAK
case 59:
YY_RULE_SETUP
#line 717 "netconf_lexer.ll"
{
   return NetconfParser::make_NULL_TYPE(driver.loc_);
}
	YY_BREAK
case 60:
YY_RULE_SETUP
#line 721 "netconf_lexer.ll"
driver.error (driver.loc_, "JSON true reserved keyword is lower case only");
	YY_BREAK
case 61:
YY_RULE_SETUP
#line 723 "netconf_lexer.ll"
driver.error (driver.loc_, "JSON false reserved keyword is lower case only");
	YY_BREAK
case 62:
YY_RULE_SETUP
#line 725 "netconf_lexer.ll"
driver.error (driver.loc_, "JSON null reserved keyword is lower case only");
	YY_BREAK
case 63:
YY_RULE_SETUP
#line 727 "netconf_lexer.ll"
driver.error (driver.loc_, "Invalid character: " + std::string(yytext));
	YY_BREAK
case YY_STATE_EOF(INITIAL):
#line 729 "netconf_lexer.ll"
{
    if (driver.states_.empty()) {
        return NetconfParser::make_END(driver.loc_);
    }
    driver.loc_ = driver.locs_.back();
    driver.locs_.pop_back();
    driver.file_ = driver.files_.back();
    driver.files_.pop_back();
    if (driver.sfile_) {
        fclose(driver.sfile_);
        driver.sfile_ = 0;
    }
    if (!driver.sfiles_.empty()) {
        driver.sfile_ = driver.sfiles_.back();
        driver.sfiles_.pop_back();
    }
    netconf__delete_buffer(YY_CURRENT_BUFFER);
    netconf__switch_to_buffer(driver.states_.back());
    driver.states_.pop_back();

    BEGIN(DIR_EXIT);
}
	YY_BREAK
case 64:
YY_RULE_SETUP
#line 752 "netconf_lexer.ll"
ECHO;
	YY_BREAK
#line 2770 "netconf_lexer.cc"

	case YY_END_OF_BUFFER:
		{
		/* Amount of text matched not including the EOB char. */
		int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;

		/* Undo the effects of YY_DO_BEFORE_ACTION. */
		*yy_cp = (yy_hold_char);
		YY_RESTORE_YY_MORE_OFFSET

		if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
			{
			/* We're scanning a new file or input source.  It's
			 * possible that this happened because the user
			 * just pointed yyin at a new source and called
			 * yylex().  If so, then we have to assure
			 * consistency between YY_CURRENT_BUFFER and our
			 * globals.  Here is the right place to do so, because
			 * this is the first action (other than possibly a
			 * back-up) that will match for the new input source.
			 */
			(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
/* %if-c-only */
			YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
/* %endif */
/* %if-c++-only */
/* %endif */
			YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
			}

		/* Note that here we test for yy_c_buf_p "<=" to the position
		 * of the first EOB in the buffer, since yy_c_buf_p will
		 * already have been incremented past the NUL character
		 * (since all states make transitions on EOB to the
		 * end-of-buffer state).  Contrast this with the test
		 * in input().
		 */
		if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
			{ /* This was really a NUL. */
			yy_state_type yy_next_state;

			(yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;

			yy_current_state = yy_get_previous_state(  );

			/* Okay, we're now positioned to make the NUL
			 * transition.  We couldn't have
			 * yy_get_previous_state() go ahead and do it
			 * for us because it doesn't know how to deal
			 * with the possibility of jamming (and we don't
			 * want to build jamming into it because then it
			 * will run more slowly).
			 */

			yy_next_state = yy_try_NUL_trans( yy_current_state );

			yy_bp = (yytext_ptr) + YY_MORE_ADJ;

			if ( yy_next_state )
				{
				/* Consume the NUL. */
				yy_cp = ++(yy_c_buf_p);
				yy_current_state = yy_next_state;
				goto yy_match;
				}

			else
				{
/* %% [14.0] code to do back-up for compressed tables and set up yy_cp goes here */
				yy_cp = (yy_last_accepting_cpos);
				yy_current_state = (yy_last_accepting_state);
				goto yy_find_action;
				}
			}

		else switch ( yy_get_next_buffer(  ) )
			{
			case EOB_ACT_END_OF_FILE:
				{
				(yy_did_buffer_switch_on_eof) = 0;

				if ( yywrap(  ) )
					{
					/* Note: because we've taken care in
					 * yy_get_next_buffer() to have set up
					 * yytext, we can now set up
					 * yy_c_buf_p so that if some total
					 * hoser (like flex itself) wants to
					 * call the scanner after we return the
					 * YY_NULL, it'll still work - another
					 * YY_NULL will get returned.
					 */
					(yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;

					yy_act = YY_STATE_EOF(YY_START);
					goto do_action;
					}

				else
					{
					if ( ! (yy_did_buffer_switch_on_eof) )
						YY_NEW_FILE;
					}
				break;
				}

			case EOB_ACT_CONTINUE_SCAN:
				(yy_c_buf_p) =
					(yytext_ptr) + yy_amount_of_matched_text;

				yy_current_state = yy_get_previous_state(  );

				yy_cp = (yy_c_buf_p);
				yy_bp = (yytext_ptr) + YY_MORE_ADJ;
				goto yy_match;

			case EOB_ACT_LAST_MATCH:
				(yy_c_buf_p) =
				&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];

				yy_current_state = yy_get_previous_state(  );

				yy_cp = (yy_c_buf_p);
				yy_bp = (yytext_ptr) + YY_MORE_ADJ;
				goto yy_find_action;
			}
		break;
		}

	default:
		YY_FATAL_ERROR(
			"fatal flex scanner internal error--no action found" );
	} /* end of action switch */
		} /* end of scanning one token */
	} /* end of user's declarations */
} /* end of yylex */
/* %ok-for-header */

/* %if-c++-only */
/* %not-for-header */
/* %ok-for-header */

/* %endif */

/* yy_get_next_buffer - try to read in a new buffer
 *
 * Returns a code representing an action:
 *	EOB_ACT_LAST_MATCH -
 *	EOB_ACT_CONTINUE_SCAN - continue scanning from current position
 *	EOB_ACT_END_OF_FILE - end of file
 */
/* %if-c-only */
static int yy_get_next_buffer (void)
/* %endif */
/* %if-c++-only */
/* %endif */
{
    	char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
	char *source = (yytext_ptr);
	int number_to_move, i;
	int ret_val;

	if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
		YY_FATAL_ERROR(
		"fatal flex scanner internal error--end of buffer missed" );

	if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
		{ /* Don't try to fill the buffer, so this is an EOF. */
		if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
			{
			/* We matched a single character, the EOB, so
			 * treat this as a final EOF.
			 */
			return EOB_ACT_END_OF_FILE;
			}

		else
			{
			/* We matched some text prior to the EOB, first
			 * process it.
			 */
			return EOB_ACT_LAST_MATCH;
			}
		}

	/* Try to read more data. */

	/* First move last chars to start of buffer. */
	number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr) - 1);

	for ( i = 0; i < number_to_move; ++i )
		*(dest++) = *(source++);

	if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
		/* don't do the read, it's not guaranteed to return an EOF,
		 * just force an EOF
		 */
		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;

	else
		{
			int num_to_read =
			YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;

		while ( num_to_read <= 0 )
			{ /* Not enough room in the buffer - grow it. */

			/* just a shorter name for the current buffer */
			YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE;

			int yy_c_buf_p_offset =
				(int) ((yy_c_buf_p) - b->yy_ch_buf);

			if ( b->yy_is_our_buffer )
				{
				int new_size = b->yy_buf_size * 2;

				if ( new_size <= 0 )
					b->yy_buf_size += b->yy_buf_size / 8;
				else
					b->yy_buf_size *= 2;

				b->yy_ch_buf = (char *)
					/* Include room in for 2 EOB chars. */
					yyrealloc( (void *) b->yy_ch_buf,
							 (yy_size_t) (b->yy_buf_size + 2)  );
				}
			else
				/* Can't grow it, we don't own it. */
				b->yy_ch_buf = NULL;

			if ( ! b->yy_ch_buf )
				YY_FATAL_ERROR(
				"fatal error - scanner input buffer overflow" );

			(yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];

			num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
						number_to_move - 1;

			}

		if ( num_to_read > YY_READ_BUF_SIZE )
			num_to_read = YY_READ_BUF_SIZE;

		/* Read in more data. */
		YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
			(yy_n_chars), num_to_read );

		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
		}

	if ( (yy_n_chars) == 0 )
		{
		if ( number_to_move == YY_MORE_ADJ )
			{
			ret_val = EOB_ACT_END_OF_FILE;
			yyrestart( yyin  );
			}

		else
			{
			ret_val = EOB_ACT_LAST_MATCH;
			YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
				YY_BUFFER_EOF_PENDING;
			}
		}

	else
		ret_val = EOB_ACT_CONTINUE_SCAN;

	if (((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
		/* Extend the array by 50%, plus the number we really need. */
		int new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
		YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc(
			(void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t) new_size  );
		if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
			YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
		/* "- 2" to take care of EOB's */
		YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2);
	}

	(yy_n_chars) += number_to_move;
	YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
	YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;

	(yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];

	return ret_val;
}

/* yy_get_previous_state - get the state just before the EOB char was reached */

/* %if-c-only */
/* %not-for-header */
    static yy_state_type yy_get_previous_state (void)
/* %endif */
/* %if-c++-only */
/* %endif */
{
	yy_state_type yy_current_state;
	char *yy_cp;
    
/* %% [15.0] code to get the start state into yy_current_state goes here */
	yy_current_state = (yy_start);

	for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
		{
/* %% [16.0] code to find the next state goes here */
		YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
		if ( yy_accept[yy_current_state] )
			{
			(yy_last_accepting_state) = yy_current_state;
			(yy_last_accepting_cpos) = yy_cp;
			}
		while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
			{
			yy_current_state = (int) yy_def[yy_current_state];
			if ( yy_current_state >= 371 )
				yy_c = yy_meta[yy_c];
			}
		yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
		}

	return yy_current_state;
}

/* yy_try_NUL_trans - try to make a transition on the NUL character
 *
 * synopsis
 *	next_state = yy_try_NUL_trans( current_state );
 */
/* %if-c-only */
    static yy_state_type yy_try_NUL_trans  (yy_state_type yy_current_state )
/* %endif */
/* %if-c++-only */
/* %endif */
{
	int yy_is_jam;
    /* %% [17.0] code to find the next state, and perhaps do backing up, goes here */
	char *yy_cp = (yy_c_buf_p);

	YY_CHAR yy_c = 1;
	if ( yy_accept[yy_current_state] )
		{
		(yy_last_accepting_state) = yy_current_state;
		(yy_last_accepting_cpos) = yy_cp;
		}
	while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
		{
		yy_current_state = (int) yy_def[yy_current_state];
		if ( yy_current_state >= 371 )
			yy_c = yy_meta[yy_c];
		}
	yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
	yy_is_jam = (yy_current_state == 370);

		return yy_is_jam ? 0 : yy_current_state;
}

#ifndef YY_NO_UNPUT
/* %if-c-only */

/* %endif */
#endif

/* %if-c-only */
#ifndef YY_NO_INPUT
#ifdef __cplusplus
    static int yyinput (void)
#else
    static int input  (void)
#endif

/* %endif */
/* %if-c++-only */
/* %endif */
{
	int c;
    
	*(yy_c_buf_p) = (yy_hold_char);

	if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
		{
		/* yy_c_buf_p now points to the character we want to return.
		 * If this occurs *before* the EOB characters, then it's a
		 * valid NUL; if not, then we've hit the end of the buffer.
		 */
		if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
			/* This was really a NUL. */
			*(yy_c_buf_p) = '\0';

		else
			{ /* need more input */
			int offset = (int) ((yy_c_buf_p) - (yytext_ptr));
			++(yy_c_buf_p);

			switch ( yy_get_next_buffer(  ) )
				{
				case EOB_ACT_LAST_MATCH:
					/* This happens because yy_g_n_b()
					 * sees that we've accumulated a
					 * token and flags that we need to
					 * try matching the token before
					 * proceeding.  But for input(),
					 * there's no matching to consider.
					 * So convert the EOB_ACT_LAST_MATCH
					 * to EOB_ACT_END_OF_FILE.
					 */

					/* Reset buffer status. */
					yyrestart( yyin );

					/*FALLTHROUGH*/

				case EOB_ACT_END_OF_FILE:
					{
					if ( yywrap(  ) )
						return 0;

					if ( ! (yy_did_buffer_switch_on_eof) )
						YY_NEW_FILE;
#ifdef __cplusplus
					return yyinput();
#else
					return input();
#endif
					}

				case EOB_ACT_CONTINUE_SCAN:
					(yy_c_buf_p) = (yytext_ptr) + offset;
					break;
				}
			}
		}

	c = *(unsigned char *) (yy_c_buf_p);	/* cast for 8-bit char's */
	*(yy_c_buf_p) = '\0';	/* preserve yytext */
	(yy_hold_char) = *++(yy_c_buf_p);

/* %% [19.0] update BOL and yylineno */

	return c;
}
/* %if-c-only */
#endif	/* ifndef YY_NO_INPUT */
/* %endif */

/** Immediately switch to a different input stream.
 * @param input_file A readable stream.
 * 
 * @note This function does not reset the start condition to @c INITIAL .
 */
/* %if-c-only */
    void yyrestart  (FILE * input_file )
/* %endif */
/* %if-c++-only */
/* %endif */
{
    
	if ( ! YY_CURRENT_BUFFER ){
        yyensure_buffer_stack ();
		YY_CURRENT_BUFFER_LVALUE =
            yy_create_buffer( yyin, YY_BUF_SIZE );
	}

	yy_init_buffer( YY_CURRENT_BUFFER, input_file );
	yy_load_buffer_state(  );
}

/* %if-c++-only */
/* %endif */

/** Switch to a different input buffer.
 * @param new_buffer The new input buffer.
 * 
 */
/* %if-c-only */
    void yy_switch_to_buffer  (YY_BUFFER_STATE  new_buffer )
/* %endif */
/* %if-c++-only */
/* %endif */
{
    
	/* TODO. We should be able to replace this entire function body
	 * with
	 *		yypop_buffer_state();
	 *		yypush_buffer_state(new_buffer);
     */
	yyensure_buffer_stack ();
	if ( YY_CURRENT_BUFFER == new_buffer )
		return;

	if ( YY_CURRENT_BUFFER )
		{
		/* Flush out information for old buffer. */
		*(yy_c_buf_p) = (yy_hold_char);
		YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
		}

	YY_CURRENT_BUFFER_LVALUE = new_buffer;
	yy_load_buffer_state(  );

	/* We don't actually know whether we did this switch during
	 * EOF (yywrap()) processing, but the only time this flag
	 * is looked at is after yywrap() is called, so it's safe
	 * to go ahead and always set it.
	 */
	(yy_did_buffer_switch_on_eof) = 1;
}

/* %if-c-only */
static void yy_load_buffer_state  (void)
/* %endif */
/* %if-c++-only */
/* %endif */
{
    	(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
	(yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
/* %if-c-only */
	yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
/* %endif */
/* %if-c++-only */
/* %endif */
	(yy_hold_char) = *(yy_c_buf_p);
}

/** Allocate and initialize an input buffer state.
 * @param file A readable stream.
 * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
 * 
 * @return the allocated buffer state.
 */
/* %if-c-only */
    YY_BUFFER_STATE yy_create_buffer  (FILE * file, int  size )
/* %endif */
/* %if-c++-only */
/* %endif */
{
	YY_BUFFER_STATE b;
    
	b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state )  );
	if ( ! b )
		YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );

	b->yy_buf_size = size;

	/* yy_ch_buf has to be 2 characters longer than the size given because
	 * we need to put in 2 end-of-buffer characters.
	 */
	b->yy_ch_buf = (char *) yyalloc( (yy_size_t) (b->yy_buf_size + 2)  );
	if ( ! b->yy_ch_buf )
		YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );

	b->yy_is_our_buffer = 1;

	yy_init_buffer( b, file );

	return b;
}

/* %if-c++-only */
/* %endif */

/** Destroy the buffer.
 * @param b a buffer created with yy_create_buffer()
 * 
 */
/* %if-c-only */
    void yy_delete_buffer (YY_BUFFER_STATE  b )
/* %endif */
/* %if-c++-only */
/* %endif */
{
    
	if ( ! b )
		return;

	if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
		YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;

	if ( b->yy_is_our_buffer )
		yyfree( (void *) b->yy_ch_buf  );

	yyfree( (void *) b  );
}

/* Initializes or reinitializes a buffer.
 * This function is sometimes called more than once on the same buffer,
 * such as during a yyrestart() or at EOF.
 */
/* %if-c-only */
    static void yy_init_buffer  (YY_BUFFER_STATE  b, FILE * file )
/* %endif */
/* %if-c++-only */
/* %endif */

{
	int oerrno = errno;
    
	yy_flush_buffer( b );

/* %if-c-only */
	b->yy_input_file = file;
/* %endif */
/* %if-c++-only */
/* %endif */
	b->yy_fill_buffer = 1;

    /* If b is the current buffer, then yy_init_buffer was _probably_
     * called from yyrestart() or through yy_get_next_buffer.
     * In that case, we don't want to reset the lineno or column.
     */
    if (b != YY_CURRENT_BUFFER){
        b->yy_bs_lineno = 1;
        b->yy_bs_column = 0;
    }

/* %if-c-only */

        b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
    
/* %endif */
/* %if-c++-only */
/* %endif */
	errno = oerrno;
}

/** Discard all buffered characters. On the next scan, YY_INPUT will be called.
 * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
 * 
 */
/* %if-c-only */
    void yy_flush_buffer (YY_BUFFER_STATE  b )
/* %endif */
/* %if-c++-only */
/* %endif */
{
    	if ( ! b )
		return;

	b->yy_n_chars = 0;

	/* We always need two end-of-buffer characters.  The first causes
	 * a transition to the end-of-buffer state.  The second causes
	 * a jam in that state.
	 */
	b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
	b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;

	b->yy_buf_pos = &b->yy_ch_buf[0];

	b->yy_at_bol = 1;
	b->yy_buffer_status = YY_BUFFER_NEW;

	if ( b == YY_CURRENT_BUFFER )
		yy_load_buffer_state(  );
}

/* %if-c-or-c++ */
/** Pushes the new state onto the stack. The new state becomes
 *  the current state. This function will allocate the stack
 *  if necessary.
 *  @param new_buffer The new state.
 *  
 */
/* %if-c-only */
void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
/* %endif */
/* %if-c++-only */
/* %endif */
{
    	if (new_buffer == NULL)
		return;

	yyensure_buffer_stack();

	/* This block is copied from yy_switch_to_buffer. */
	if ( YY_CURRENT_BUFFER )
		{
		/* Flush out information for old buffer. */
		*(yy_c_buf_p) = (yy_hold_char);
		YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
		}

	/* Only push if top exists. Otherwise, replace top. */
	if (YY_CURRENT_BUFFER)
		(yy_buffer_stack_top)++;
	YY_CURRENT_BUFFER_LVALUE = new_buffer;

	/* copied from yy_switch_to_buffer. */
	yy_load_buffer_state(  );
	(yy_did_buffer_switch_on_eof) = 1;
}
/* %endif */

/* %if-c-or-c++ */
/** Removes and deletes the top of the stack, if present.
 *  The next element becomes the new top.
 *  
 */
/* %if-c-only */
void yypop_buffer_state (void)
/* %endif */
/* %if-c++-only */
/* %endif */
{
    	if (!YY_CURRENT_BUFFER)
		return;

	yy_delete_buffer(YY_CURRENT_BUFFER );
	YY_CURRENT_BUFFER_LVALUE = NULL;
	if ((yy_buffer_stack_top) > 0)
		--(yy_buffer_stack_top);

	if (YY_CURRENT_BUFFER) {
		yy_load_buffer_state(  );
		(yy_did_buffer_switch_on_eof) = 1;
	}
}
/* %endif */

/* %if-c-or-c++ */
/* Allocates the stack if it does not exist.
 *  Guarantees space for at least one push.
 */
/* %if-c-only */
static void yyensure_buffer_stack (void)
/* %endif */
/* %if-c++-only */
/* %endif */
{
	yy_size_t num_to_alloc;
    
	if (!(yy_buffer_stack)) {

		/* First allocation is just for 2 elements, since we don't know if this
		 * scanner will even need a stack. We use 2 instead of 1 to avoid an
		 * immediate realloc on the next call.
         */
      num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */
		(yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
								(num_to_alloc * sizeof(struct yy_buffer_state*)
								);
		if ( ! (yy_buffer_stack) )
			YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );

		memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));

		(yy_buffer_stack_max) = num_to_alloc;
		(yy_buffer_stack_top) = 0;
		return;
	}

	if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){

		/* Increase the buffer to prepare for a possible push. */
		yy_size_t grow_size = 8 /* arbitrary grow size */;

		num_to_alloc = (yy_buffer_stack_max) + grow_size;
		(yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
								((yy_buffer_stack),
								num_to_alloc * sizeof(struct yy_buffer_state*)
								);
		if ( ! (yy_buffer_stack) )
			YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );

		/* zero only the new slots.*/
		memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
		(yy_buffer_stack_max) = num_to_alloc;
	}
}
/* %endif */

/* %if-c-only */
/** Setup the input buffer state to scan directly from a user-specified character buffer.
 * @param base the character buffer
 * @param size the size in bytes of the character buffer
 * 
 * @return the newly allocated buffer state object.
 */
YY_BUFFER_STATE yy_scan_buffer  (char * base, yy_size_t  size )
{
	YY_BUFFER_STATE b;
    
	if ( size < 2 ||
	     base[size-2] != YY_END_OF_BUFFER_CHAR ||
	     base[size-1] != YY_END_OF_BUFFER_CHAR )
		/* They forgot to leave room for the EOB's. */
		return NULL;

	b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state )  );
	if ( ! b )
		YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );

	b->yy_buf_size = (int) (size - 2);	/* "- 2" to take care of EOB's */
	b->yy_buf_pos = b->yy_ch_buf = base;
	b->yy_is_our_buffer = 0;
	b->yy_input_file = NULL;
	b->yy_n_chars = b->yy_buf_size;
	b->yy_is_interactive = 0;
	b->yy_at_bol = 1;
	b->yy_fill_buffer = 0;
	b->yy_buffer_status = YY_BUFFER_NEW;

	yy_switch_to_buffer( b  );

	return b;
}
/* %endif */

/* %if-c-only */
/** Setup the input buffer state to scan a string. The next call to yylex() will
 * scan from a @e copy of @a str.
 * @param yystr a NUL-terminated string to scan
 * 
 * @return the newly allocated buffer state object.
 * @note If you want to scan bytes that may contain NUL values, then use
 *       yy_scan_bytes() instead.
 */
YY_BUFFER_STATE yy_scan_string (const char * yystr )
{
    
	return yy_scan_bytes( yystr, (int) strlen(yystr) );
}
/* %endif */

/* %if-c-only */
/** Setup the input buffer state to scan the given bytes. The next call to yylex() will
 * scan from a @e copy of @a bytes.
 * @param yybytes the byte buffer to scan
 * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
 * 
 * @return the newly allocated buffer state object.
 */
YY_BUFFER_STATE yy_scan_bytes  (const char * yybytes, int  _yybytes_len )
{
	YY_BUFFER_STATE b;
	char *buf;
	yy_size_t n;
	int i;
    
	/* Get memory for full buffer, including space for trailing EOB's. */
	n = (yy_size_t) (_yybytes_len + 2);
	buf = (char *) yyalloc( n  );
	if ( ! buf )
		YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );

	for ( i = 0; i < _yybytes_len; ++i )
		buf[i] = yybytes[i];

	buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;

	b = yy_scan_buffer( buf, n );
	if ( ! b )
		YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );

	/* It's okay to grow etc. this buffer, and we should throw it
	 * away when we're done.
	 */
	b->yy_is_our_buffer = 1;

	return b;
}
/* %endif */

#ifndef YY_EXIT_FAILURE
#define YY_EXIT_FAILURE 2
#endif

/* %if-c-only */
static void yynoreturn yy_fatal_error (const char* msg )
{
			fprintf( stderr, "%s\n", msg );
	exit( YY_EXIT_FAILURE );
}
/* %endif */
/* %if-c++-only */
/* %endif */

/* Redefine yyless() so it works in section 3 code. */

#undef yyless
#define yyless(n) \
	do \
		{ \
		/* Undo effects of setting up yytext. */ \
        int yyless_macro_arg = (n); \
        YY_LESS_LINENO(yyless_macro_arg);\
		yytext[yyleng] = (yy_hold_char); \
		(yy_c_buf_p) = yytext + yyless_macro_arg; \
		(yy_hold_char) = *(yy_c_buf_p); \
		*(yy_c_buf_p) = '\0'; \
		yyleng = yyless_macro_arg; \
		} \
	while ( 0 )

/* Accessor  methods (get/set functions) to struct members. */

/* %if-c-only */
/* %if-reentrant */
/* %endif */

/** Get the current line number.
 * 
 */
int yyget_lineno  (void)
{
    
    return yylineno;
}

/** Get the input stream.
 * 
 */
FILE *yyget_in  (void)
{
        return yyin;
}

/** Get the output stream.
 * 
 */
FILE *yyget_out  (void)
{
        return yyout;
}

/** Get the length of the current token.
 * 
 */
int yyget_leng  (void)
{
        return yyleng;
}

/** Get the current token.
 * 
 */

char *yyget_text  (void)
{
        return yytext;
}

/* %if-reentrant */
/* %endif */

/** Set the current line number.
 * @param _line_number line number
 * 
 */
void yyset_lineno (int  _line_number )
{
    
    yylineno = _line_number;
}

/** Set the input stream. This does not discard the current
 * input buffer.
 * @param _in_str A readable stream.
 * 
 * @see yy_switch_to_buffer
 */
void yyset_in (FILE *  _in_str )
{
        yyin = _in_str ;
}

void yyset_out (FILE *  _out_str )
{
        yyout = _out_str ;
}

int yyget_debug  (void)
{
        return yy_flex_debug;
}

void yyset_debug (int  _bdebug )
{
        yy_flex_debug = _bdebug ;
}

/* %endif */

/* %if-reentrant */
/* %if-bison-bridge */
/* %endif */
/* %endif if-c-only */

/* %if-c-only */
static int yy_init_globals (void)
{
        /* Initialization is the same as for the non-reentrant scanner.
     * This function is called from yylex_destroy(), so don't allocate here.
     */

    (yy_buffer_stack) = NULL;
    (yy_buffer_stack_top) = 0;
    (yy_buffer_stack_max) = 0;
    (yy_c_buf_p) = NULL;
    (yy_init) = 0;
    (yy_start) = 0;

/* Defined in main.c */
#ifdef YY_STDINIT
    yyin = stdin;
    yyout = stdout;
#else
    yyin = NULL;
    yyout = NULL;
#endif

    /* For future reference: Set errno on error, since we are called by
     * yylex_init()
     */
    return 0;
}
/* %endif */

/* %if-c-only SNIP! this currently causes conflicts with the c++ scanner */
/* yylex_destroy is for both reentrant and non-reentrant scanners. */
int yylex_destroy  (void)
{
    
    /* Pop the buffer stack, destroying each element. */
	while(YY_CURRENT_BUFFER){
		yy_delete_buffer( YY_CURRENT_BUFFER  );
		YY_CURRENT_BUFFER_LVALUE = NULL;
		yypop_buffer_state();
	}

	/* Destroy the stack itself. */
	yyfree((yy_buffer_stack) );
	(yy_buffer_stack) = NULL;

    /* Reset the globals. This is important in a non-reentrant scanner so the next time
     * yylex() is called, initialization will occur. */
    yy_init_globals( );

/* %if-reentrant */
/* %endif */
    return 0;
}
/* %endif */

/*
 * Internal utility routines.
 */

#ifndef yytext_ptr
static void yy_flex_strncpy (char* s1, const char * s2, int n )
{
		
	int i;
	for ( i = 0; i < n; ++i )
		s1[i] = s2[i];
}
#endif

#ifdef YY_NEED_STRLEN
static int yy_flex_strlen (const char * s )
{
	int n;
	for ( n = 0; s[n]; ++n )
		;

	return n;
}
#endif

void *yyalloc (yy_size_t  size )
{
			return malloc(size);
}

void *yyrealloc  (void * ptr, yy_size_t  size )
{
		
	/* The cast to (char *) in the following accommodates both
	 * implementations that use char* generic pointers, and those
	 * that use void* generic pointers.  It works with the latter
	 * because both ANSI C and C++ allow castless assignment from
	 * any pointer type to void*, and deal with argument conversions
	 * as though doing an assignment.
	 */
	return realloc(ptr, size);
}

void yyfree (void * ptr )
{
			free( (char *) ptr );	/* see yyrealloc() for (char *) cast */
}

/* %if-tables-serialization definitions */
/* %define-yytables   The name for this specific scanner's tables. */
#define YYTABLES_NAME "yytables"
/* %endif */

/* %ok-for-header */

#line 752 "netconf_lexer.ll"


using namespace isc::dhcp;

void
ParserContext::scanStringBegin(const std::string& str, ParserType parser_type)
{
    start_token_flag = true;
    start_token_value = parser_type;

    file_ = "<string>";
    sfile_ = 0;
    loc_.initialize(&file_);
    yy_flex_debug = trace_scanning_;
    YY_BUFFER_STATE buffer;
    buffer = netconf__scan_bytes(str.c_str(), str.size());
    if (!buffer) {
        fatal("cannot scan string");
        /* fatal() throws an exception so this can't be reached */
    }
}

void
ParserContext::scanFileBegin(FILE * f,
                             const std::string& filename,
                             ParserType parser_type)
{
    start_token_flag = true;
    start_token_value = parser_type;

    file_ = filename;
    sfile_ = f;
    loc_.initialize(&file_);
    yy_flex_debug = trace_scanning_;
    YY_BUFFER_STATE buffer;

    /* See netconf_lexer.cc header for available definitions */
    buffer = netconf__create_buffer(f, 65536 /*buffer size*/);
    if (!buffer) {
        fatal("cannot scan file " + filename);
    }
    netconf__switch_to_buffer(buffer);
}

void
ParserContext::scanEnd() {
    if (sfile_)
        fclose(sfile_);
    sfile_ = 0;
    static_cast<void>(netconf_lex_destroy());
    /* Close files */
    while (!sfiles_.empty()) {
        FILE* f = sfiles_.back();
        if (f) {
            fclose(f);
        }
        sfiles_.pop_back();
    }
    /* Delete states */
    while (!states_.empty()) {
        netconf__delete_buffer(states_.back());
        states_.pop_back();
    }
}

void
ParserContext::includeFile(const std::string& filename) {
    if (states_.size() > 10) {
        fatal("Too many nested include.");
    }

    FILE* f = fopen(filename.c_str(), "r");
    if (!f) {
        fatal("Can't open include file " + filename);
    }
    if (sfile_) {
        sfiles_.push_back(sfile_);
    }
    sfile_ = f;
    states_.push_back(YY_CURRENT_BUFFER);
    YY_BUFFER_STATE buffer;
    buffer = netconf__create_buffer(f, 65536 /*buffer size*/);
    if (!buffer) {
        fatal( "Can't scan include file " + filename);
    }
    netconf__switch_to_buffer(buffer);
    files_.push_back(file_);
    file_ = filename;
    locs_.push_back(loc_);
    loc_.initialize(&file_);

    BEGIN(INITIAL);
}

namespace {
/** To avoid unused function error */
class Dummy {
    /* cppcheck-suppress unusedPrivateFunction */
    void dummy() { yy_fatal_error("Fix me: how to disable its definition?"); }
};
}
#endif /* !__clang_analyzer__ */