├── .gitattributes ├── .gitignore ├── ConsoleApp1 ├── ConsoleApp1.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── app.manifest ├── DevCenterSample ├── Real │ └── ks_real.xlsm ├── StockCodeGen │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── StockCodeGen.csproj ├── TR │ └── 업종 │ │ ├── cspaq12200 │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── cspaq12200.csproj │ │ ├── cspaq12300 │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── cspaq12300.csproj │ │ ├── cspat600 │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── cspat600.csproj │ │ ├── cspat700 │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── cspat700.csproj │ │ ├── cspat800 │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── cspat800.csproj │ │ ├── t0167 │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── t0167.csproj │ │ ├── t0424 │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── t0424.csproj │ │ ├── t0425 │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── t0425.csproj │ │ ├── t1102 │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── t1102.csproj │ │ ├── t1301 │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── t1301.csproj │ │ ├── t1302 │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── t1302.csproj │ │ ├── t1305 │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── t1305.csproj │ │ ├── t1310 │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── t1310.csproj │ │ ├── t1475 │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── t1475.csproj │ │ ├── t1511 │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── t1511.csproj │ │ ├── t1514 │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── t1514.csproj │ │ ├── t1532 │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── t1532.csproj │ │ ├── t1533 │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── t1533.csproj │ │ ├── t1537 │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── t1537.csproj │ │ ├── t1702 │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── t1702.csproj │ │ ├── t1717 │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── t1717.csproj │ │ ├── t1857 │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── StockInfo.cs │ │ └── t1857.csproj │ │ ├── t2101 │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── t2101.csproj │ │ ├── t3320 │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── StockInfo.cs │ │ └── t3320.csproj │ │ ├── t3341 │ │ ├── App.config │ │ ├── FinancialInfo.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── t3341.csproj │ │ ├── t8419 │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── t8419.csproj │ │ ├── t8424 │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── t8424.csproj │ │ ├── t8425 │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── t8425.csproj │ │ └── t8430 │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── t8430.csproj ├── WriteToSqlite │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── WriteToSqlite.csproj │ └── app.config └── bin │ └── Sys │ ├── INISAFENet.cnf │ ├── sample_cert.der │ └── sample_priv.key ├── Lib ├── AutoGenerated │ ├── B7_.cs │ ├── BMT.cs │ ├── BM_.cs │ ├── C01.cs │ ├── CCEAQ01100.cs │ ├── CCEAQ06000.cs │ ├── CCEAQ10100.cs │ ├── CCEAQ50600.cs │ ├── CCEAT00100.cs │ ├── CCEAT00200.cs │ ├── CCEAT00300.cs │ ├── CCEBQ10500.cs │ ├── CD0.cs │ ├── CDPCQ04700.cs │ ├── CEXAQ21100.cs │ ├── CEXAQ21200.cs │ ├── CEXAQ31100.cs │ ├── CEXAQ31200.cs │ ├── CEXAQ44200.cs │ ├── CEXAT11100.cs │ ├── CEXAT11200.cs │ ├── CEXAT11300.cs │ ├── CFOAQ00600.cs │ ├── CFOAQ10100.cs │ ├── CFOAT00100.cs │ ├── CFOAT00200.cs │ ├── CFOAT00300.cs │ ├── CFOBQ10500.cs │ ├── CFOBQ10800.cs │ ├── CFOEQ11100.cs │ ├── CFOEQ82600.cs │ ├── CFOFQ02400.cs │ ├── CLNAQ00100.cs │ ├── CM0.cs │ ├── CM1.cs │ ├── CM2.cs │ ├── CSPAQ00600.cs │ ├── CSPAQ12200.cs │ ├── CSPAQ12300.cs │ ├── CSPAQ13700.cs │ ├── CSPAQ22200.cs │ ├── CSPAT00600.cs │ ├── CSPAT00700.cs │ ├── CSPAT00800.cs │ ├── CSPBQ00200.cs │ ├── CUR.cs │ ├── ChartExcel.cs │ ├── ChartIndex.cs │ ├── DH1.cs │ ├── DHA.cs │ ├── DK3.cs │ ├── DS3.cs │ ├── DVI.cs │ ├── EC0.cs │ ├── EH0.cs │ ├── ESN.cs │ ├── EU0.cs │ ├── EU1.cs │ ├── EU2.cs │ ├── EbestHelper.cs │ ├── FC0.cs │ ├── FD0.cs │ ├── FH0.cs │ ├── FOCCQ33600.cs │ ├── FOCCQ33700.cs │ ├── FX0.cs │ ├── H01.cs │ ├── H1_.cs │ ├── H2_.cs │ ├── HA_.cs │ ├── HB_.cs │ ├── I5_.cs │ ├── IJ_.cs │ ├── JC0.cs │ ├── JD0.cs │ ├── JH0.cs │ ├── JIF.cs │ ├── JX0.cs │ ├── K1_.cs │ ├── K3_.cs │ ├── KH_.cs │ ├── KM_.cs │ ├── KS_.cs │ ├── MK2.cs │ ├── MMDAQ91200.cs │ ├── NC0.cs │ ├── NH0.cs │ ├── NWS.cs │ ├── O01.cs │ ├── OC0.cs │ ├── OD0.cs │ ├── OH0.cs │ ├── OK_.cs │ ├── OMG.cs │ ├── OX0.cs │ ├── PH_.cs │ ├── PM_.cs │ ├── S2_.cs │ ├── S3_.cs │ ├── S4_.cs │ ├── SC0.cs │ ├── SC1.cs │ ├── SC2.cs │ ├── SC3.cs │ ├── SC4.cs │ ├── SHC.cs │ ├── SHD.cs │ ├── SHI.cs │ ├── SHO.cs │ ├── VI_.cs │ ├── XingQueries.cs │ ├── YC3.cs │ ├── YFC.cs │ ├── YJC.cs │ ├── YJ_.cs │ ├── YK3.cs │ ├── YOC.cs │ ├── YS3.cs │ ├── Ys3_4ELW.cs │ ├── h2_4ELW.cs │ ├── h3_4ELW.cs │ ├── k1_4ELW.cs │ ├── s2_4ELW.cs │ ├── s3_4ELW.cs │ ├── s4_ELW.cs │ ├── t0150.cs │ ├── t0151.cs │ ├── t0167.cs │ ├── t0424.cs │ ├── t0425.cs │ ├── t0434.cs │ ├── t0441.cs │ ├── t1101.cs │ ├── t1102.cs │ ├── t1104.cs │ ├── t1105.cs │ ├── t1301.cs │ ├── t1302.cs │ ├── t1305.cs │ ├── t1308.cs │ ├── t1310.cs │ ├── t1403.cs │ ├── t1404.cs │ ├── t1405.cs │ ├── t1410.cs │ ├── t1411.cs │ ├── t1422.cs │ ├── t1427.cs │ ├── t1442.cs │ ├── t1444.cs │ ├── t1449.cs │ ├── t1452.cs │ ├── t1463.cs │ ├── t1471.cs │ ├── t1475.cs │ ├── t1485.cs │ ├── t1486.cs │ ├── t1488.cs │ ├── t1489.cs │ ├── t1511.cs │ ├── t1514.cs │ ├── t1516.cs │ ├── t1531.cs │ ├── t1532.cs │ ├── t1533.cs │ ├── t1537.cs │ ├── t1601.cs │ ├── t1602.cs │ ├── t1603.cs │ ├── t1615.cs │ ├── t1617.cs │ ├── t1621.cs │ ├── t1631.cs │ ├── t1632.cs │ ├── t1633.cs │ ├── t1636.cs │ ├── t1637.cs │ ├── t1638.cs │ ├── t1640.cs │ ├── t1662.cs │ ├── t1664.cs │ ├── t1665.cs │ ├── t1701.cs │ ├── t1702.cs │ ├── t1717.cs │ ├── t1752.cs │ ├── t1764.cs │ ├── t1771.cs │ ├── t1809.cs │ ├── t1825.cs │ ├── t1826.cs │ ├── t1857.cs │ ├── t1866.cs │ ├── t1901.cs │ ├── t1902.cs │ ├── t1903.cs │ ├── t1904.cs │ ├── t1906.cs │ ├── t1921.cs │ ├── t1926.cs │ ├── t1927.cs │ ├── t1941.cs │ ├── t1950.cs │ ├── t1951.cs │ ├── t1954.cs │ ├── t1955.cs │ ├── t1956.cs │ ├── t1958.cs │ ├── t1959.cs │ ├── t1960.cs │ ├── t1961.cs │ ├── t1964.cs │ ├── t1966.cs │ ├── t1971.cs │ ├── t1972.cs │ ├── t1973.cs │ ├── t1974.cs │ ├── t1981.cs │ ├── t2101.cs │ ├── t2105.cs │ ├── t2106.cs │ ├── t2201.cs │ ├── t2203.cs │ ├── t2209.cs │ ├── t2210.cs │ ├── t2301.cs │ ├── t2405.cs │ ├── t2421.cs │ ├── t2541.cs │ ├── t2545.cs │ ├── t2801.cs │ ├── t2802.cs │ ├── t2804.cs │ ├── t2805.cs │ ├── t2813.cs │ ├── t2814.cs │ ├── t2816.cs │ ├── t2830.cs │ ├── t2831.cs │ ├── t2832.cs │ ├── t2833.cs │ ├── t2835.cs │ ├── t3102.cs │ ├── t3202.cs │ ├── t3320.cs │ ├── t3341.cs │ ├── t3401.cs │ ├── t3518.cs │ ├── t3521.cs │ ├── t4201.cs │ ├── t4203.cs │ ├── t8401.cs │ ├── t8402.cs │ ├── t8403.cs │ ├── t8404.cs │ ├── t8405.cs │ ├── t8406.cs │ ├── t8407.cs │ ├── t8408.cs │ ├── t8409.cs │ ├── t8411.cs │ ├── t8412.cs │ ├── t8413.cs │ ├── t8414.cs │ ├── t8415.cs │ ├── t8416.cs │ ├── t8417.cs │ ├── t8418.cs │ ├── t8419.cs │ ├── t8424.cs │ ├── t8425.cs │ ├── t8426.cs │ ├── t8427.cs │ ├── t8428.cs │ ├── t8429.cs │ ├── t8430.cs │ ├── t8431.cs │ ├── t8432.cs │ ├── t8433.cs │ ├── t8434.cs │ ├── t8435.cs │ ├── t8436.cs │ ├── t8437.cs │ ├── t9905.cs │ ├── t9907.cs │ ├── t9942.cs │ ├── t9943.cs │ ├── t9944.cs │ └── t9945.cs ├── CSCommError.txt ├── ChartApiSample.exe ├── DevCenter.exe ├── IXingAPI.h ├── Image │ ├── btnConnect.bmp │ ├── btnQuit.bmp │ └── devcenter_login_back.bmp ├── Login.ini ├── Microsoft.Data.Sqlite.dll ├── Microsoft.Win32.Primitives.dll ├── Res │ ├── B7_.res │ ├── B7__1.res │ ├── BMT.res │ ├── BMT_1.res │ ├── BM_.res │ ├── BM__1.res │ ├── C01.res │ ├── C01_1.res │ ├── CCEAQ01100.res │ ├── CCEAQ01100_1.res │ ├── CCEAQ06000.res │ ├── CCEAQ06000_1.res │ ├── CCEAQ10100.res │ ├── CCEAQ10100_1.res │ ├── CCEAQ50600.res │ ├── CCEAQ50600_1.res │ ├── CCEAT00100.res │ ├── CCEAT00100_1.res │ ├── CCEAT00200.res │ ├── CCEAT00200_1.res │ ├── CCEAT00300.res │ ├── CCEAT00300_1.res │ ├── CCEBQ10500.res │ ├── CCEBQ10500_1.res │ ├── CD0.res │ ├── CD0_1.res │ ├── CDPCQ04700.res │ ├── CDPCQ04700_1.res │ ├── CEXAQ21100.res │ ├── CEXAQ21100_1.res │ ├── CEXAQ21200.res │ ├── CEXAQ21200_1.res │ ├── CEXAQ31100.res │ ├── CEXAQ31100_1.res │ ├── CEXAQ31200.res │ ├── CEXAQ31200_1.res │ ├── CEXAQ44200.res │ ├── CEXAQ44200_1.res │ ├── CEXAT11100.res │ ├── CEXAT11100_1.res │ ├── CEXAT11200.res │ ├── CEXAT11200_1.res │ ├── CEXAT11300.res │ ├── CEXAT11300_1.res │ ├── CFOAQ00600.res │ ├── CFOAQ00600_1.res │ ├── CFOAQ10100.res │ ├── CFOAQ10100_1.res │ ├── CFOAT00100.res │ ├── CFOAT00100_1.res │ ├── CFOAT00200.res │ ├── CFOAT00200_1.res │ ├── CFOAT00300.res │ ├── CFOAT00300_1.res │ ├── CFOBQ10500.res │ ├── CFOBQ10500_1.res │ ├── CFOBQ10800.res │ ├── CFOBQ10800_1.res │ ├── CFOEQ11100.res │ ├── CFOEQ11100_1.res │ ├── CFOEQ82600.res │ ├── CFOEQ82600_1.res │ ├── CFOFQ02400.res │ ├── CFOFQ02400_1.res │ ├── CLNAQ00100.res │ ├── CLNAQ00100_1.res │ ├── CM0.res │ ├── CM0_1.res │ ├── CM1.res │ ├── CM1_1.res │ ├── CM2.res │ ├── CM2_1.res │ ├── CSPAQ00600.res │ ├── CSPAQ00600_1.res │ ├── CSPAQ12200.res │ ├── CSPAQ12200_1.res │ ├── CSPAQ12300.res │ ├── CSPAQ12300_1.res │ ├── CSPAQ13700.res │ ├── CSPAQ13700_1.res │ ├── CSPAQ22200.res │ ├── CSPAQ22200_1.res │ ├── CSPAT00600.res │ ├── CSPAT00600_1.res │ ├── CSPAT00700.res │ ├── CSPAT00700_1.res │ ├── CSPAT00800.res │ ├── CSPAT00800_1.res │ ├── CSPBQ00200.res │ ├── CSPBQ00200_1.res │ ├── CUR.res │ ├── CUR_1.res │ ├── ChartExcel.res │ ├── ChartExcel_1.res │ ├── ChartIndex.res │ ├── ChartIndex_1.res │ ├── DH1.res │ ├── DH1_1.res │ ├── DHA.res │ ├── DHA_1.res │ ├── DK3.res │ ├── DK3_1.res │ ├── DS3.res │ ├── DS3_1.res │ ├── DVI.res │ ├── DVI_1.res │ ├── EC0.res │ ├── EC0_1.res │ ├── EH0.res │ ├── EH0_1.res │ ├── ESN.res │ ├── ESN_1.res │ ├── EU0.res │ ├── EU0_1.res │ ├── EU1.res │ ├── EU1_1.res │ ├── EU2.res │ ├── EU2_1.res │ ├── FC0.res │ ├── FC0_1.res │ ├── FD0.res │ ├── FD0_1.res │ ├── FH0.res │ ├── FH0_1.res │ ├── FOCCQ33600.res │ ├── FOCCQ33600_1.res │ ├── FOCCQ33700.res │ ├── FOCCQ33700_1.res │ ├── FX0.res │ ├── FX0_1.res │ ├── H01.res │ ├── H01_1.res │ ├── H1_.res │ ├── H1__1.res │ ├── H2_.res │ ├── H2__1.res │ ├── HA_.res │ ├── HA__1.res │ ├── HB_.res │ ├── HB__1.res │ ├── I5_.res │ ├── I5__1.res │ ├── IJ_.res │ ├── IJ__1.res │ ├── JC0.res │ ├── JC0_1.res │ ├── JD0.res │ ├── JD0_1.res │ ├── JH0.res │ ├── JH0_1.res │ ├── JIF.res │ ├── JIF_1.res │ ├── JX0.res │ ├── JX0_1.res │ ├── K1_.res │ ├── K1__1.res │ ├── K3_.res │ ├── K3__1.res │ ├── KH_.res │ ├── KH__1.res │ ├── KM_.res │ ├── KM__1.res │ ├── KS_.res │ ├── KS__1.res │ ├── MK2.res │ ├── MK2_1.res │ ├── MMDAQ91200.res │ ├── MMDAQ91200_1.res │ ├── NC0.res │ ├── NC0_1.res │ ├── NH0.res │ ├── NH0_1.res │ ├── NWS.res │ ├── NWS_1.res │ ├── O01.res │ ├── O01_1.res │ ├── OC0.res │ ├── OC0_1.res │ ├── OD0.res │ ├── OD0_1.res │ ├── OH0.res │ ├── OH0_1.res │ ├── OK_.res │ ├── OK__1.res │ ├── OMG.res │ ├── OMG_1.res │ ├── OX0.res │ ├── OX0_1.res │ ├── PH_.res │ ├── PH__1.res │ ├── PM_.res │ ├── PM__1.res │ ├── S2_.res │ ├── S2__1.res │ ├── S3_.res │ ├── S3__1.res │ ├── S4_.res │ ├── S4__1.res │ ├── SC0.res │ ├── SC0_1.res │ ├── SC1.res │ ├── SC1_1.res │ ├── SC2.res │ ├── SC2_1.res │ ├── SC3.res │ ├── SC3_1.res │ ├── SC4.res │ ├── SC4_1.res │ ├── SHC.res │ ├── SHC_1.res │ ├── SHD.res │ ├── SHD_1.res │ ├── SHI.res │ ├── SHI_1.res │ ├── SHO.res │ ├── SHO_1.res │ ├── VI_.res │ ├── VI__1.res │ ├── YC3.res │ ├── YC3_1.res │ ├── YFC.res │ ├── YFC_1.res │ ├── YJC.res │ ├── YJC_1.res │ ├── YJ_.res │ ├── YJ__1.res │ ├── YK3.res │ ├── YK3_1.res │ ├── YOC.res │ ├── YOC_1.res │ ├── YS3.res │ ├── YS3_1.res │ ├── Ys3_4ELW.res │ ├── Ys3_4ELW_1.res │ ├── h2_4ELW.res │ ├── h2_4ELW_2.res │ ├── h3_4ELW.res │ ├── h3_4ELW_2.res │ ├── k1_4ELW.res │ ├── k1_4ELW_2.res │ ├── s2_4ELW.res │ ├── s2_4ELW_2.res │ ├── s3_4ELW.res │ ├── s3_4ELW_2.res │ ├── s4_ELW.res │ ├── s4_ELW_2.res │ ├── t0150.res │ ├── t0150_2.res │ ├── t0151.res │ ├── t0151_2.res │ ├── t0167.res │ ├── t0167_2.res │ ├── t0424.res │ ├── t0424_2.res │ ├── t0425.res │ ├── t0425_2.res │ ├── t0434.res │ ├── t0434_2.res │ ├── t0441.res │ ├── t0441_2.res │ ├── t1101.res │ ├── t1101_2.res │ ├── t1102.res │ ├── t1102_2.res │ ├── t1104.res │ ├── t1104_2.res │ ├── t1105.res │ ├── t1105_2.res │ ├── t1301.res │ ├── t1301_2.res │ ├── t1302.res │ ├── t1302_2.res │ ├── t1305.res │ ├── t1305_2.res │ ├── t1308.res │ ├── t1308_2.res │ ├── t1310.res │ ├── t1310_2.res │ ├── t1403.res │ ├── t1403_2.res │ ├── t1404.res │ ├── t1404_2.res │ ├── t1405.res │ ├── t1405_2.res │ ├── t1410.res │ ├── t1410_2.res │ ├── t1411.res │ ├── t1411_2.res │ ├── t1422.res │ ├── t1422_2.res │ ├── t1427.res │ ├── t1427_2.res │ ├── t1442.res │ ├── t1442_2.res │ ├── t1444.res │ ├── t1444_2.res │ ├── t1449.res │ ├── t1449_2.res │ ├── t1452.res │ ├── t1452_2.res │ ├── t1463.res │ ├── t1463_2.res │ ├── t1471.res │ ├── t1471_2.res │ ├── t1475.res │ ├── t1475_2.res │ ├── t1485.res │ ├── t1485_2.res │ ├── t1486.res │ ├── t1486_2.res │ ├── t1488.res │ ├── t1488_2.res │ ├── t1489.res │ ├── t1489_2.res │ ├── t1511.res │ ├── t1511_2.res │ ├── t1514.res │ ├── t1514_2.res │ ├── t1516.res │ ├── t1516_2.res │ ├── t1531.res │ ├── t1531_2.res │ ├── t1532.res │ ├── t1532_2.res │ ├── t1533.res │ ├── t1533_2.res │ ├── t1537.res │ ├── t1537_2.res │ ├── t1601.res │ ├── t1601_2.res │ ├── t1602.res │ ├── t1602_2.res │ ├── t1603.res │ ├── t1603_2.res │ ├── t1615.res │ ├── t1615_2.res │ ├── t1617.res │ ├── t1617_2.res │ ├── t1621.res │ ├── t1621_2.res │ ├── t1631.res │ ├── t1631_2.res │ ├── t1632.res │ ├── t1632_2.res │ ├── t1633.res │ ├── t1633_2.res │ ├── t1636.res │ ├── t1636_2.res │ ├── t1637.res │ ├── t1637_2.res │ ├── t1638.res │ ├── t1638_2.res │ ├── t1640.res │ ├── t1640_2.res │ ├── t1662.res │ ├── t1662_2.res │ ├── t1664.res │ ├── t1664_2.res │ ├── t1665.res │ ├── t1665_2.res │ ├── t1701.res │ ├── t1701_2.res │ ├── t1702.res │ ├── t1702_2.res │ ├── t1717.res │ ├── t1717_2.res │ ├── t1752.res │ ├── t1752_2.res │ ├── t1764.res │ ├── t1764_2.res │ ├── t1771.res │ ├── t1771_2.res │ ├── t1809.res │ ├── t1809_2.res │ ├── t1825.res │ ├── t1825_2.res │ ├── t1826.res │ ├── t1826_2.res │ ├── t1857.res │ ├── t1857_2.res │ ├── t1866.res │ ├── t1866_2.res │ ├── t1901.res │ ├── t1901_2.res │ ├── t1902.res │ ├── t1902_2.res │ ├── t1903.res │ ├── t1903_2.res │ ├── t1904.res │ ├── t1904_2.res │ ├── t1906.res │ ├── t1906_2.res │ ├── t1921.res │ ├── t1921_2.res │ ├── t1926.res │ ├── t1926_2.res │ ├── t1927.res │ ├── t1927_2.res │ ├── t1941.res │ ├── t1941_2.res │ ├── t1950.res │ ├── t1950_2.res │ ├── t1951.res │ ├── t1951_2.res │ ├── t1954.res │ ├── t1954_2.res │ ├── t1955.res │ ├── t1955_2.res │ ├── t1956.res │ ├── t1956_2.res │ ├── t1958.res │ ├── t1958_2.res │ ├── t1959.res │ ├── t1959_2.res │ ├── t1960.res │ ├── t1960_2.res │ ├── t1961.res │ ├── t1961_2.res │ ├── t1964.res │ ├── t1964_2.res │ ├── t1966.res │ ├── t1966_2.res │ ├── t1971.res │ ├── t1971_2.res │ ├── t1972.res │ ├── t1972_2.res │ ├── t1973.res │ ├── t1973_2.res │ ├── t1974.res │ ├── t1974_2.res │ ├── t1981.res │ ├── t1981_2.res │ ├── t2101.res │ ├── t2101_2.res │ ├── t2105.res │ ├── t2105_2.res │ ├── t2106.res │ ├── t2106_2.res │ ├── t2201.res │ ├── t2201_2.res │ ├── t2203.res │ ├── t2203_2.res │ ├── t2209.res │ ├── t2209_2.res │ ├── t2210.res │ ├── t2210_2.res │ ├── t2301.res │ ├── t2301_2.res │ ├── t2405.res │ ├── t2405_2.res │ ├── t2421.res │ ├── t2421_2.res │ ├── t2541.res │ ├── t2541_2.res │ ├── t2545.res │ ├── t2545_2.res │ ├── t2801.res │ ├── t2801_2.res │ ├── t2802.res │ ├── t2802_2.res │ ├── t2804.res │ ├── t2804_2.res │ ├── t2805.res │ ├── t2805_2.res │ ├── t2813.res │ ├── t2813_2.res │ ├── t2814.res │ ├── t2814_2.res │ ├── t2816.res │ ├── t2816_2.res │ ├── t2830.res │ ├── t2830_2.res │ ├── t2831.res │ ├── t2831_2.res │ ├── t2832.res │ ├── t2832_2.res │ ├── t2833.res │ ├── t2833_2.res │ ├── t2835.res │ ├── t2835_2.res │ ├── t3102.res │ ├── t3102_2.res │ ├── t3202.res │ ├── t3202_2.res │ ├── t3320.res │ ├── t3320_2.res │ ├── t3341.res │ ├── t3341_2.res │ ├── t3401.res │ ├── t3401_2.res │ ├── t3518.res │ ├── t3518_2.res │ ├── t3521.res │ ├── t3521_2.res │ ├── t4201.res │ ├── t4201_2.res │ ├── t4203.res │ ├── t4203_2.res │ ├── t8401.res │ ├── t8401_2.res │ ├── t8402.res │ ├── t8402_2.res │ ├── t8403.res │ ├── t8403_2.res │ ├── t8404.res │ ├── t8404_2.res │ ├── t8405.res │ ├── t8405_2.res │ ├── t8406.res │ ├── t8406_2.res │ ├── t8407.res │ ├── t8407_2.res │ ├── t8408.res │ ├── t8408_2.res │ ├── t8409.res │ ├── t8409_2.res │ ├── t8411.res │ ├── t8411_2.res │ ├── t8412.res │ ├── t8412_2.res │ ├── t8413.res │ ├── t8413_2.res │ ├── t8414.res │ ├── t8414_2.res │ ├── t8415.res │ ├── t8415_2.res │ ├── t8416.res │ ├── t8416_2.res │ ├── t8417.res │ ├── t8417_2.res │ ├── t8418.res │ ├── t8418_2.res │ ├── t8419.res │ ├── t8419_2.res │ ├── t8424.res │ ├── t8424_2.res │ ├── t8425.res │ ├── t8425_2.res │ ├── t8426.res │ ├── t8426_2.res │ ├── t8427.res │ ├── t8427_2.res │ ├── t8428.res │ ├── t8428_2.res │ ├── t8429.res │ ├── t8429_2.res │ ├── t8430.res │ ├── t8430_2.res │ ├── t8431.res │ ├── t8431_2.res │ ├── t8432.res │ ├── t8432_2.res │ ├── t8433.res │ ├── t8433_2.res │ ├── t8434.res │ ├── t8434_2.res │ ├── t8435.res │ ├── t8435_2.res │ ├── t8436.res │ ├── t8436_2.res │ ├── t8437.res │ ├── t8437_2.res │ ├── t9905.res │ ├── t9905_2.res │ ├── t9907.res │ ├── t9907_2.res │ ├── t9942.res │ ├── t9942_2.res │ ├── t9943.res │ ├── t9943_2.res │ ├── t9944.res │ ├── t9944_2.res │ ├── t9945.res │ └── t9945_2.res ├── SKComdCM.dll ├── SKComdEM.dll ├── SKComdIF.dll ├── SKComdSC.dll ├── SKCommCM.dll ├── SKCommEM.dll ├── SKCommIC.dll ├── SKCommIF.dll ├── SKCommSC.dll ├── SQLitePCLRaw.batteries_v2.dll ├── SQLitePCLRaw.core.dll ├── SQLitePCLRaw.nativelibrary.dll ├── SQLitePCLRaw.provider.dynamic_cdecl.dll ├── Sample_xingACE.exe ├── Sys │ ├── AceTR.txt │ ├── DevCenter.ini │ ├── Guide.ini │ ├── INISAFENet.cnf │ ├── RD.ini │ ├── default.lic │ ├── sample_cert.der │ ├── sample_priv.key │ └── webinfo.ini ├── XA_Common.dll ├── XA_DataSet.dll ├── XA_Session.dll ├── XecureS.dll ├── XingAPI_Sample.exe ├── atl100.dll ├── e_sqlite3.dll ├── ebestAPIDaemon.exe ├── ebestAPIdaemon.ini ├── enmsgoem.dll ├── glb_oem.ini ├── hkdnsres.dll ├── inicore_v2.4.3.1.dll ├── inicrypto_v5.2.0.1.dll ├── inipki_v5.2.7.1.dll ├── inisafenet_v7.2.dll ├── mfc100.dll ├── mfc110.dll ├── mfc42.dll ├── msvcp100.dll ├── msvcp110.dll ├── msvcp60.dll ├── msvcr100.dll ├── msvcr110.dll ├── msvcrt.dll ├── nsldap32v11.dll ├── readme.txt ├── reg.bat ├── runtimes │ └── win-x86 │ │ └── native │ │ └── e_sqlite3.dll ├── unreg.bat ├── xingACE.exe ├── xingAPI.dll ├── xingAPI.ini └── xingAceRDSender.dll ├── Manifests ├── Interop.XA_DataSetLib.dll ├── Interop.XA_SessionLib.dll ├── XA_DataSet.dll.manifest ├── XA_Session.dll.manifest └── import_lib.bat ├── Res2Query ├── Helper.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── Res2Query.csproj ├── WindowsFormsApp1 ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── WindowsFormsApp1.csproj └── WindowsFormsApp1.exe.manifest ├── XingAPI.sln ├── XingAPINet.Sqlite ├── SqliteExtension.cs └── XingAPINet.Sqlite.csproj ├── XingAPINet ├── AutoGeneratedPartial │ ├── cspaq12200.partial.cs │ ├── cspat600.partial.cs │ ├── t0424.partial.cs │ ├── t1302.partial.cs │ ├── t1305.partial.cs │ ├── t1310.partial.cs │ ├── t1475.partial.cs │ ├── t1511.partial.cs │ ├── t1514.partial.cs │ ├── t1533.partial.cs │ ├── t1702.partial.cs │ ├── t1717.partial.cs │ ├── t8419.partial.cs │ └── t8430.partial.cs ├── CodeGen │ └── Stock.cs ├── DatabaseExtension.cs ├── Helper.cs ├── Properties │ └── AssemblyInfo.cs ├── XingAPINet.csproj ├── XingAPINet.nuspec ├── XingBlock.cs ├── XingClient.cs ├── XingQuery.cs ├── XingReal.cs ├── deploy_nuget.bat ├── nuget │ └── root │ │ ├── XingAPINet.nuspec │ │ ├── build │ │ └── XingAPINet.targets │ │ └── lib │ │ └── net40 │ │ ├── Interop.XA_DataSetLib.dll │ │ ├── Interop.XA_SessionLib.dll │ │ ├── XA_DataSet.dll.manifest │ │ ├── XA_Session.dll.manifest │ │ ├── XingAPINet.Sqlite.dll │ │ ├── XingAPINet.dll │ │ └── XingAPINet.xml ├── nuget_output │ └── XingAPINet.1.1.2.nupkg.zip └── nuget_support │ └── XingAPINet.targets ├── XingNativePack ├── Properties │ └── AssemblyInfo.cs ├── XingNativePack.csproj ├── atl100.dll ├── ebestAPIDaemon.exe ├── ebestAPIdaemon.ini ├── mfc100.dll ├── msvcp100.dll └── msvcr100.dll ├── getNugetVersion.ps1 └── readFile.ps1 /ConsoleApp1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("ConsoleApp1")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ConsoleApp1")] 13 | [assembly: AssemblyCopyright("Copyright © 2020")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("ef05a9dc-e222-4421-a779-a7ffb68c361e")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /ConsoleApp1/app.manifest: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /DevCenterSample/Real/ks_real.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/DevCenterSample/Real/ks_real.xlsm -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/cspaq12200/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/cspaq12300/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/cspaq12300/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace cspaq12300 8 | { 9 | class Program 10 | { 11 | static void Main(string[] args) 12 | { 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/cspat600/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/cspat700/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/cspat700/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace cspat700 8 | { 9 | class Program 10 | { 11 | static void Main(string[] args) 12 | { 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/cspat800/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/cspat800/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace cspat800 8 | { 9 | class Program 10 | { 11 | static void Main(string[] args) 12 | { 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t0167/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("t0167")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("t0167")] 13 | [assembly: AssemblyCopyright("Copyright © 2020")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("91b446a6-4526-48ce-9ce0-8f65bb0c54ef")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t0167/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t0424/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t0425/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t0425/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace t0425 8 | { 9 | class Program 10 | { 11 | static void Main(string[] args) 12 | { 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t1102/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t1301/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t1302/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t1305/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t1310/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t1475/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t1511/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t1514/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t1532/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t1533/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t1537/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t1702/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t1717/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t1857/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t1857/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 어셈블리에 대한 일반 정보는 다음 특성 집합을 통해 6 | // 제어됩니다. 어셈블리와 관련된 정보를 수정하려면 7 | // 이러한 특성 값을 변경하세요. 8 | [assembly: AssemblyTitle("t1857")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("t1857")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // ComVisible을 false로 설정하면 이 어셈블리의 형식이 COM 구성 요소에 18 | // 표시되지 않습니다. COM에서 이 어셈블리의 형식에 액세스하려면 19 | // 해당 형식에 대해 ComVisible 특성을 true로 설정하세요. 20 | [assembly: ComVisible(false)] 21 | 22 | // 이 프로젝트가 COM에 노출되는 경우 다음 GUID는 typelib의 ID를 나타냅니다. 23 | [assembly: Guid("f55abb34-5f6b-4b12-bc29-eca9a687823d")] 24 | 25 | // 어셈블리의 버전 정보는 다음 네 가지 값으로 구성됩니다. 26 | // 27 | // 주 버전 28 | // 부 버전 29 | // 빌드 번호 30 | // 수정 버전 31 | // 32 | // 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를 33 | // 기본값으로 할 수 있습니다. 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t1857/StockInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using XingAPINet; 7 | 8 | namespace t1857 9 | { 10 | public class StockInfo : XQt1857OutBlock1 11 | { 12 | public float CPS { get; set; } 13 | public float SPS { get; set; } 14 | public float PBR { get; set; } 15 | public float PER { get; set; } 16 | public float PCR { get { return this.price / this.CPS; } } 17 | public float PSR { get { return this.price / this.SPS; } } 18 | 19 | public StockInfo(XQt1857OutBlock1 block) 20 | { 21 | block.CopyTo(this); 22 | } 23 | 24 | public override string ToString() 25 | { 26 | return $"{hname:F2}({shcode}): PCR={PCR:F2}, PBR={PBR:F2}, PER={PER:F2}, PSR={PSR:F2}, CPS={CPS:F2}, SPS={SPS:F2}, Price={price}"; 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t2101/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t3320/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t3320/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 어셈블리에 대한 일반 정보는 다음 특성 집합을 통해 6 | // 제어됩니다. 어셈블리와 관련된 정보를 수정하려면 7 | // 이러한 특성 값을 변경하세요. 8 | [assembly: AssemblyTitle("t3320")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("t3320")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // ComVisible을 false로 설정하면 이 어셈블리의 형식이 COM 구성 요소에 18 | // 표시되지 않습니다. COM에서 이 어셈블리의 형식에 액세스하려면 19 | // 해당 형식에 대해 ComVisible 특성을 true로 설정하세요. 20 | [assembly: ComVisible(false)] 21 | 22 | // 이 프로젝트가 COM에 노출되는 경우 다음 GUID는 typelib의 ID를 나타냅니다. 23 | [assembly: Guid("c6b535a1-9998-4337-9612-ce126e00062a")] 24 | 25 | // 어셈블리의 버전 정보는 다음 네 가지 값으로 구성됩니다. 26 | // 27 | // 주 버전 28 | // 부 버전 29 | // 빌드 번호 30 | // 수정 버전 31 | // 32 | // 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를 33 | // 기본값으로 할 수 있습니다. 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t3320/StockInfo.cs: -------------------------------------------------------------------------------- 1 | using XingAPINet; 2 | 3 | namespace t3320 4 | { 5 | public class StockInfo : XQt3320OutBlock1 6 | { 7 | readonly string _name; 8 | public string Name => _name; 9 | 10 | public string SHCode => this.gicode; 11 | 12 | public StockInfo(string name, XQt3320OutBlock1 block) 13 | { 14 | _name = name; 15 | block.CopyTo(this); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t3341/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t3341/FinancialInfo.cs: -------------------------------------------------------------------------------- 1 | using XingAPINet; 2 | 3 | namespace t3341 4 | { 5 | public class FinancialInfo : XQt3341OutBlock1 6 | { 7 | public FinancialInfo(XQt3341OutBlock1 block) 8 | { 9 | block.CopyTo(this); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t3341/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 어셈블리에 대한 일반 정보는 다음 특성 집합을 통해 6 | // 제어됩니다. 어셈블리와 관련된 정보를 수정하려면 7 | // 이러한 특성 값을 변경하세요. 8 | [assembly: AssemblyTitle("t3341")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("t3341")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // ComVisible을 false로 설정하면 이 어셈블리의 형식이 COM 구성 요소에 18 | // 표시되지 않습니다. COM에서 이 어셈블리의 형식에 액세스하려면 19 | // 해당 형식에 대해 ComVisible 특성을 true로 설정하세요. 20 | [assembly: ComVisible(false)] 21 | 22 | // 이 프로젝트가 COM에 노출되는 경우 다음 GUID는 typelib의 ID를 나타냅니다. 23 | [assembly: Guid("5a25d2f7-9b48-41be-9ac5-ec1761654426")] 24 | 25 | // 어셈블리의 버전 정보는 다음 네 가지 값으로 구성됩니다. 26 | // 27 | // 주 버전 28 | // 부 버전 29 | // 빌드 번호 30 | // 수정 버전 31 | // 32 | // 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를 33 | // 기본값으로 할 수 있습니다. 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t8419/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t8424/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t8425/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /DevCenterSample/TR/업종/t8430/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /DevCenterSample/WriteToSqlite/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using XingAPINet; 6 | 7 | namespace WriteToSqlite 8 | { 9 | class Program 10 | { 11 | static void Main(string[] _) 12 | { 13 | Program pg = new Program(); 14 | pg.Main(true); 15 | } 16 | 17 | void Main(bool useDemoServer) 18 | { 19 | SqliteExtension.UseSqlite("test.sqlite"); 20 | 21 | LoginInfo user = GetUserInfo(useDemoServer); 22 | 23 | using (XingClient xing = new XingClient(useDemoServer)) 24 | { 25 | if (xing.ConnectWithLogin(user) == false) 26 | { 27 | Console.WriteLine(xing.ErrorMessage); 28 | return; 29 | } 30 | 31 | XQt8430.Get(XQt8430Gubun.전체).WriteToDB(); 32 | XQt8425.Get().WriteToDB(); 33 | } 34 | } 35 | 36 | private LoginInfo GetUserInfo(bool useDemoServer) 37 | { 38 | string fileName = (useDemoServer == true) ? "ebest.demo.txt" : "ebest.hts.txt"; 39 | string filePath = $@"d:\settings\{fileName}"; 40 | 41 | return LoginInfo.FromEncryptedFile(filePath); 42 | } 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /DevCenterSample/WriteToSqlite/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /DevCenterSample/bin/Sys/INISAFENet.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/DevCenterSample/bin/Sys/INISAFENet.cnf -------------------------------------------------------------------------------- /DevCenterSample/bin/Sys/sample_cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/DevCenterSample/bin/Sys/sample_cert.der -------------------------------------------------------------------------------- /DevCenterSample/bin/Sys/sample_priv.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/DevCenterSample/bin/Sys/sample_priv.key -------------------------------------------------------------------------------- /Lib/CSCommError.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/CSCommError.txt -------------------------------------------------------------------------------- /Lib/ChartApiSample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/ChartApiSample.exe -------------------------------------------------------------------------------- /Lib/DevCenter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/DevCenter.exe -------------------------------------------------------------------------------- /Lib/IXingAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/IXingAPI.h -------------------------------------------------------------------------------- /Lib/Image/btnConnect.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Image/btnConnect.bmp -------------------------------------------------------------------------------- /Lib/Image/btnQuit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Image/btnQuit.bmp -------------------------------------------------------------------------------- /Lib/Image/devcenter_login_back.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Image/devcenter_login_back.bmp -------------------------------------------------------------------------------- /Lib/Login.ini: -------------------------------------------------------------------------------- 1 | [LOGIN] 2 | MACAddr=00155DB16E04 3 | -------------------------------------------------------------------------------- /Lib/Microsoft.Data.Sqlite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Microsoft.Data.Sqlite.dll -------------------------------------------------------------------------------- /Lib/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /Lib/Res/B7_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/B7_.res -------------------------------------------------------------------------------- /Lib/Res/B7__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/B7__1.res -------------------------------------------------------------------------------- /Lib/Res/BMT.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/BMT.res -------------------------------------------------------------------------------- /Lib/Res/BMT_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/BMT_1.res -------------------------------------------------------------------------------- /Lib/Res/BM_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/BM_.res -------------------------------------------------------------------------------- /Lib/Res/BM__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/BM__1.res -------------------------------------------------------------------------------- /Lib/Res/C01.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/C01.res -------------------------------------------------------------------------------- /Lib/Res/C01_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/C01_1.res -------------------------------------------------------------------------------- /Lib/Res/CCEAQ01100.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CCEAQ01100.res -------------------------------------------------------------------------------- /Lib/Res/CCEAQ01100_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CCEAQ01100_1.res -------------------------------------------------------------------------------- /Lib/Res/CCEAQ06000.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CCEAQ06000.res -------------------------------------------------------------------------------- /Lib/Res/CCEAQ06000_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CCEAQ06000_1.res -------------------------------------------------------------------------------- /Lib/Res/CCEAQ10100.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CCEAQ10100.res -------------------------------------------------------------------------------- /Lib/Res/CCEAQ10100_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CCEAQ10100_1.res -------------------------------------------------------------------------------- /Lib/Res/CCEAQ50600.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CCEAQ50600.res -------------------------------------------------------------------------------- /Lib/Res/CCEAQ50600_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CCEAQ50600_1.res -------------------------------------------------------------------------------- /Lib/Res/CCEAT00100.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CCEAT00100.res -------------------------------------------------------------------------------- /Lib/Res/CCEAT00100_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CCEAT00100_1.res -------------------------------------------------------------------------------- /Lib/Res/CCEAT00200.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CCEAT00200.res -------------------------------------------------------------------------------- /Lib/Res/CCEAT00200_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CCEAT00200_1.res -------------------------------------------------------------------------------- /Lib/Res/CCEAT00300.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CCEAT00300.res -------------------------------------------------------------------------------- /Lib/Res/CCEAT00300_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CCEAT00300_1.res -------------------------------------------------------------------------------- /Lib/Res/CCEBQ10500.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CCEBQ10500.res -------------------------------------------------------------------------------- /Lib/Res/CCEBQ10500_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CCEBQ10500_1.res -------------------------------------------------------------------------------- /Lib/Res/CD0.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CD0.res -------------------------------------------------------------------------------- /Lib/Res/CD0_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CD0_1.res -------------------------------------------------------------------------------- /Lib/Res/CDPCQ04700.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CDPCQ04700.res -------------------------------------------------------------------------------- /Lib/Res/CDPCQ04700_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CDPCQ04700_1.res -------------------------------------------------------------------------------- /Lib/Res/CEXAQ21100.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CEXAQ21100.res -------------------------------------------------------------------------------- /Lib/Res/CEXAQ21100_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CEXAQ21100_1.res -------------------------------------------------------------------------------- /Lib/Res/CEXAQ21200.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CEXAQ21200.res -------------------------------------------------------------------------------- /Lib/Res/CEXAQ21200_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CEXAQ21200_1.res -------------------------------------------------------------------------------- /Lib/Res/CEXAQ31100.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CEXAQ31100.res -------------------------------------------------------------------------------- /Lib/Res/CEXAQ31100_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CEXAQ31100_1.res -------------------------------------------------------------------------------- /Lib/Res/CEXAQ31200.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CEXAQ31200.res -------------------------------------------------------------------------------- /Lib/Res/CEXAQ31200_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CEXAQ31200_1.res -------------------------------------------------------------------------------- /Lib/Res/CEXAQ44200.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CEXAQ44200.res -------------------------------------------------------------------------------- /Lib/Res/CEXAQ44200_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CEXAQ44200_1.res -------------------------------------------------------------------------------- /Lib/Res/CEXAT11100.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CEXAT11100.res -------------------------------------------------------------------------------- /Lib/Res/CEXAT11100_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CEXAT11100_1.res -------------------------------------------------------------------------------- /Lib/Res/CEXAT11200.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CEXAT11200.res -------------------------------------------------------------------------------- /Lib/Res/CEXAT11200_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CEXAT11200_1.res -------------------------------------------------------------------------------- /Lib/Res/CEXAT11300.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CEXAT11300.res -------------------------------------------------------------------------------- /Lib/Res/CEXAT11300_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CEXAT11300_1.res -------------------------------------------------------------------------------- /Lib/Res/CFOAQ00600.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CFOAQ00600.res -------------------------------------------------------------------------------- /Lib/Res/CFOAQ00600_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CFOAQ00600_1.res -------------------------------------------------------------------------------- /Lib/Res/CFOAQ10100.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CFOAQ10100.res -------------------------------------------------------------------------------- /Lib/Res/CFOAQ10100_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CFOAQ10100_1.res -------------------------------------------------------------------------------- /Lib/Res/CFOAT00100.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CFOAT00100.res -------------------------------------------------------------------------------- /Lib/Res/CFOAT00100_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CFOAT00100_1.res -------------------------------------------------------------------------------- /Lib/Res/CFOAT00200.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CFOAT00200.res -------------------------------------------------------------------------------- /Lib/Res/CFOAT00200_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CFOAT00200_1.res -------------------------------------------------------------------------------- /Lib/Res/CFOAT00300.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CFOAT00300.res -------------------------------------------------------------------------------- /Lib/Res/CFOAT00300_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CFOAT00300_1.res -------------------------------------------------------------------------------- /Lib/Res/CFOBQ10500.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CFOBQ10500.res -------------------------------------------------------------------------------- /Lib/Res/CFOBQ10500_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CFOBQ10500_1.res -------------------------------------------------------------------------------- /Lib/Res/CFOBQ10800.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CFOBQ10800.res -------------------------------------------------------------------------------- /Lib/Res/CFOBQ10800_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CFOBQ10800_1.res -------------------------------------------------------------------------------- /Lib/Res/CFOEQ11100.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CFOEQ11100.res -------------------------------------------------------------------------------- /Lib/Res/CFOEQ11100_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CFOEQ11100_1.res -------------------------------------------------------------------------------- /Lib/Res/CFOEQ82600.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CFOEQ82600.res -------------------------------------------------------------------------------- /Lib/Res/CFOEQ82600_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CFOEQ82600_1.res -------------------------------------------------------------------------------- /Lib/Res/CFOFQ02400.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CFOFQ02400.res -------------------------------------------------------------------------------- /Lib/Res/CFOFQ02400_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CFOFQ02400_1.res -------------------------------------------------------------------------------- /Lib/Res/CLNAQ00100.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CLNAQ00100.res -------------------------------------------------------------------------------- /Lib/Res/CLNAQ00100_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CLNAQ00100_1.res -------------------------------------------------------------------------------- /Lib/Res/CM0.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CM0.res -------------------------------------------------------------------------------- /Lib/Res/CM0_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CM0_1.res -------------------------------------------------------------------------------- /Lib/Res/CM1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CM1.res -------------------------------------------------------------------------------- /Lib/Res/CM1_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CM1_1.res -------------------------------------------------------------------------------- /Lib/Res/CM2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CM2.res -------------------------------------------------------------------------------- /Lib/Res/CM2_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CM2_1.res -------------------------------------------------------------------------------- /Lib/Res/CSPAQ00600.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CSPAQ00600.res -------------------------------------------------------------------------------- /Lib/Res/CSPAQ00600_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CSPAQ00600_1.res -------------------------------------------------------------------------------- /Lib/Res/CSPAQ12200.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CSPAQ12200.res -------------------------------------------------------------------------------- /Lib/Res/CSPAQ12200_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CSPAQ12200_1.res -------------------------------------------------------------------------------- /Lib/Res/CSPAQ12300.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CSPAQ12300.res -------------------------------------------------------------------------------- /Lib/Res/CSPAQ12300_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CSPAQ12300_1.res -------------------------------------------------------------------------------- /Lib/Res/CSPAQ13700.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CSPAQ13700.res -------------------------------------------------------------------------------- /Lib/Res/CSPAQ13700_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CSPAQ13700_1.res -------------------------------------------------------------------------------- /Lib/Res/CSPAQ22200.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CSPAQ22200.res -------------------------------------------------------------------------------- /Lib/Res/CSPAQ22200_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CSPAQ22200_1.res -------------------------------------------------------------------------------- /Lib/Res/CSPAT00600.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CSPAT00600.res -------------------------------------------------------------------------------- /Lib/Res/CSPAT00600_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CSPAT00600_1.res -------------------------------------------------------------------------------- /Lib/Res/CSPAT00700.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CSPAT00700.res -------------------------------------------------------------------------------- /Lib/Res/CSPAT00700_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CSPAT00700_1.res -------------------------------------------------------------------------------- /Lib/Res/CSPAT00800.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CSPAT00800.res -------------------------------------------------------------------------------- /Lib/Res/CSPAT00800_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CSPAT00800_1.res -------------------------------------------------------------------------------- /Lib/Res/CSPBQ00200.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CSPBQ00200.res -------------------------------------------------------------------------------- /Lib/Res/CSPBQ00200_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CSPBQ00200_1.res -------------------------------------------------------------------------------- /Lib/Res/CUR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CUR.res -------------------------------------------------------------------------------- /Lib/Res/CUR_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/CUR_1.res -------------------------------------------------------------------------------- /Lib/Res/ChartExcel.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/ChartExcel.res -------------------------------------------------------------------------------- /Lib/Res/ChartExcel_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/ChartExcel_1.res -------------------------------------------------------------------------------- /Lib/Res/ChartIndex.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/ChartIndex.res -------------------------------------------------------------------------------- /Lib/Res/ChartIndex_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/ChartIndex_1.res -------------------------------------------------------------------------------- /Lib/Res/DH1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/DH1.res -------------------------------------------------------------------------------- /Lib/Res/DH1_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/DH1_1.res -------------------------------------------------------------------------------- /Lib/Res/DHA.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/DHA.res -------------------------------------------------------------------------------- /Lib/Res/DHA_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/DHA_1.res -------------------------------------------------------------------------------- /Lib/Res/DK3.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/DK3.res -------------------------------------------------------------------------------- /Lib/Res/DK3_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/DK3_1.res -------------------------------------------------------------------------------- /Lib/Res/DS3.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/DS3.res -------------------------------------------------------------------------------- /Lib/Res/DS3_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/DS3_1.res -------------------------------------------------------------------------------- /Lib/Res/DVI.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/DVI.res -------------------------------------------------------------------------------- /Lib/Res/DVI_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/DVI_1.res -------------------------------------------------------------------------------- /Lib/Res/EC0.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/EC0.res -------------------------------------------------------------------------------- /Lib/Res/EC0_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/EC0_1.res -------------------------------------------------------------------------------- /Lib/Res/EH0.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/EH0.res -------------------------------------------------------------------------------- /Lib/Res/EH0_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/EH0_1.res -------------------------------------------------------------------------------- /Lib/Res/ESN.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/ESN.res -------------------------------------------------------------------------------- /Lib/Res/ESN_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/ESN_1.res -------------------------------------------------------------------------------- /Lib/Res/EU0.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/EU0.res -------------------------------------------------------------------------------- /Lib/Res/EU0_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/EU0_1.res -------------------------------------------------------------------------------- /Lib/Res/EU1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/EU1.res -------------------------------------------------------------------------------- /Lib/Res/EU1_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/EU1_1.res -------------------------------------------------------------------------------- /Lib/Res/EU2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/EU2.res -------------------------------------------------------------------------------- /Lib/Res/EU2_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/EU2_1.res -------------------------------------------------------------------------------- /Lib/Res/FC0.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/FC0.res -------------------------------------------------------------------------------- /Lib/Res/FC0_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/FC0_1.res -------------------------------------------------------------------------------- /Lib/Res/FD0.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/FD0.res -------------------------------------------------------------------------------- /Lib/Res/FD0_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/FD0_1.res -------------------------------------------------------------------------------- /Lib/Res/FH0.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/FH0.res -------------------------------------------------------------------------------- /Lib/Res/FH0_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/FH0_1.res -------------------------------------------------------------------------------- /Lib/Res/FOCCQ33600.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/FOCCQ33600.res -------------------------------------------------------------------------------- /Lib/Res/FOCCQ33600_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/FOCCQ33600_1.res -------------------------------------------------------------------------------- /Lib/Res/FOCCQ33700.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/FOCCQ33700.res -------------------------------------------------------------------------------- /Lib/Res/FOCCQ33700_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/FOCCQ33700_1.res -------------------------------------------------------------------------------- /Lib/Res/FX0.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/FX0.res -------------------------------------------------------------------------------- /Lib/Res/FX0_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/FX0_1.res -------------------------------------------------------------------------------- /Lib/Res/H01.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/H01.res -------------------------------------------------------------------------------- /Lib/Res/H01_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/H01_1.res -------------------------------------------------------------------------------- /Lib/Res/H1_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/H1_.res -------------------------------------------------------------------------------- /Lib/Res/H1__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/H1__1.res -------------------------------------------------------------------------------- /Lib/Res/H2_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/H2_.res -------------------------------------------------------------------------------- /Lib/Res/H2__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/H2__1.res -------------------------------------------------------------------------------- /Lib/Res/HA_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/HA_.res -------------------------------------------------------------------------------- /Lib/Res/HA__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/HA__1.res -------------------------------------------------------------------------------- /Lib/Res/HB_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/HB_.res -------------------------------------------------------------------------------- /Lib/Res/HB__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/HB__1.res -------------------------------------------------------------------------------- /Lib/Res/I5_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/I5_.res -------------------------------------------------------------------------------- /Lib/Res/I5__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/I5__1.res -------------------------------------------------------------------------------- /Lib/Res/IJ_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/IJ_.res -------------------------------------------------------------------------------- /Lib/Res/IJ__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/IJ__1.res -------------------------------------------------------------------------------- /Lib/Res/JC0.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/JC0.res -------------------------------------------------------------------------------- /Lib/Res/JC0_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/JC0_1.res -------------------------------------------------------------------------------- /Lib/Res/JD0.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/JD0.res -------------------------------------------------------------------------------- /Lib/Res/JD0_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/JD0_1.res -------------------------------------------------------------------------------- /Lib/Res/JH0.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/JH0.res -------------------------------------------------------------------------------- /Lib/Res/JH0_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/JH0_1.res -------------------------------------------------------------------------------- /Lib/Res/JIF.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/JIF.res -------------------------------------------------------------------------------- /Lib/Res/JIF_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/JIF_1.res -------------------------------------------------------------------------------- /Lib/Res/JX0.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/JX0.res -------------------------------------------------------------------------------- /Lib/Res/JX0_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/JX0_1.res -------------------------------------------------------------------------------- /Lib/Res/K1_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/K1_.res -------------------------------------------------------------------------------- /Lib/Res/K1__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/K1__1.res -------------------------------------------------------------------------------- /Lib/Res/K3_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/K3_.res -------------------------------------------------------------------------------- /Lib/Res/K3__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/K3__1.res -------------------------------------------------------------------------------- /Lib/Res/KH_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/KH_.res -------------------------------------------------------------------------------- /Lib/Res/KH__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/KH__1.res -------------------------------------------------------------------------------- /Lib/Res/KM_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/KM_.res -------------------------------------------------------------------------------- /Lib/Res/KM__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/KM__1.res -------------------------------------------------------------------------------- /Lib/Res/KS_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/KS_.res -------------------------------------------------------------------------------- /Lib/Res/KS__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/KS__1.res -------------------------------------------------------------------------------- /Lib/Res/MK2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/MK2.res -------------------------------------------------------------------------------- /Lib/Res/MK2_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/MK2_1.res -------------------------------------------------------------------------------- /Lib/Res/MMDAQ91200.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/MMDAQ91200.res -------------------------------------------------------------------------------- /Lib/Res/MMDAQ91200_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/MMDAQ91200_1.res -------------------------------------------------------------------------------- /Lib/Res/NC0.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/NC0.res -------------------------------------------------------------------------------- /Lib/Res/NC0_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/NC0_1.res -------------------------------------------------------------------------------- /Lib/Res/NH0.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/NH0.res -------------------------------------------------------------------------------- /Lib/Res/NH0_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/NH0_1.res -------------------------------------------------------------------------------- /Lib/Res/NWS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/NWS.res -------------------------------------------------------------------------------- /Lib/Res/NWS_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/NWS_1.res -------------------------------------------------------------------------------- /Lib/Res/O01.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/O01.res -------------------------------------------------------------------------------- /Lib/Res/O01_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/O01_1.res -------------------------------------------------------------------------------- /Lib/Res/OC0.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/OC0.res -------------------------------------------------------------------------------- /Lib/Res/OC0_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/OC0_1.res -------------------------------------------------------------------------------- /Lib/Res/OD0.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/OD0.res -------------------------------------------------------------------------------- /Lib/Res/OD0_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/OD0_1.res -------------------------------------------------------------------------------- /Lib/Res/OH0.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/OH0.res -------------------------------------------------------------------------------- /Lib/Res/OH0_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/OH0_1.res -------------------------------------------------------------------------------- /Lib/Res/OK_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/OK_.res -------------------------------------------------------------------------------- /Lib/Res/OK__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/OK__1.res -------------------------------------------------------------------------------- /Lib/Res/OMG.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/OMG.res -------------------------------------------------------------------------------- /Lib/Res/OMG_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/OMG_1.res -------------------------------------------------------------------------------- /Lib/Res/OX0.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/OX0.res -------------------------------------------------------------------------------- /Lib/Res/OX0_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/OX0_1.res -------------------------------------------------------------------------------- /Lib/Res/PH_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/PH_.res -------------------------------------------------------------------------------- /Lib/Res/PH__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/PH__1.res -------------------------------------------------------------------------------- /Lib/Res/PM_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/PM_.res -------------------------------------------------------------------------------- /Lib/Res/PM__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/PM__1.res -------------------------------------------------------------------------------- /Lib/Res/S2_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/S2_.res -------------------------------------------------------------------------------- /Lib/Res/S2__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/S2__1.res -------------------------------------------------------------------------------- /Lib/Res/S3_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/S3_.res -------------------------------------------------------------------------------- /Lib/Res/S3__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/S3__1.res -------------------------------------------------------------------------------- /Lib/Res/S4_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/S4_.res -------------------------------------------------------------------------------- /Lib/Res/S4__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/S4__1.res -------------------------------------------------------------------------------- /Lib/Res/SC0.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/SC0.res -------------------------------------------------------------------------------- /Lib/Res/SC0_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/SC0_1.res -------------------------------------------------------------------------------- /Lib/Res/SC1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/SC1.res -------------------------------------------------------------------------------- /Lib/Res/SC1_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/SC1_1.res -------------------------------------------------------------------------------- /Lib/Res/SC2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/SC2.res -------------------------------------------------------------------------------- /Lib/Res/SC2_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/SC2_1.res -------------------------------------------------------------------------------- /Lib/Res/SC3.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/SC3.res -------------------------------------------------------------------------------- /Lib/Res/SC3_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/SC3_1.res -------------------------------------------------------------------------------- /Lib/Res/SC4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/SC4.res -------------------------------------------------------------------------------- /Lib/Res/SC4_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/SC4_1.res -------------------------------------------------------------------------------- /Lib/Res/SHC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/SHC.res -------------------------------------------------------------------------------- /Lib/Res/SHC_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/SHC_1.res -------------------------------------------------------------------------------- /Lib/Res/SHD.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/SHD.res -------------------------------------------------------------------------------- /Lib/Res/SHD_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/SHD_1.res -------------------------------------------------------------------------------- /Lib/Res/SHI.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/SHI.res -------------------------------------------------------------------------------- /Lib/Res/SHI_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/SHI_1.res -------------------------------------------------------------------------------- /Lib/Res/SHO.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/SHO.res -------------------------------------------------------------------------------- /Lib/Res/SHO_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/SHO_1.res -------------------------------------------------------------------------------- /Lib/Res/VI_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/VI_.res -------------------------------------------------------------------------------- /Lib/Res/VI__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/VI__1.res -------------------------------------------------------------------------------- /Lib/Res/YC3.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/YC3.res -------------------------------------------------------------------------------- /Lib/Res/YC3_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/YC3_1.res -------------------------------------------------------------------------------- /Lib/Res/YFC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/YFC.res -------------------------------------------------------------------------------- /Lib/Res/YFC_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/YFC_1.res -------------------------------------------------------------------------------- /Lib/Res/YJC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/YJC.res -------------------------------------------------------------------------------- /Lib/Res/YJC_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/YJC_1.res -------------------------------------------------------------------------------- /Lib/Res/YJ_.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/YJ_.res -------------------------------------------------------------------------------- /Lib/Res/YJ__1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/YJ__1.res -------------------------------------------------------------------------------- /Lib/Res/YK3.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/YK3.res -------------------------------------------------------------------------------- /Lib/Res/YK3_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/YK3_1.res -------------------------------------------------------------------------------- /Lib/Res/YOC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/YOC.res -------------------------------------------------------------------------------- /Lib/Res/YOC_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/YOC_1.res -------------------------------------------------------------------------------- /Lib/Res/YS3.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/YS3.res -------------------------------------------------------------------------------- /Lib/Res/YS3_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/YS3_1.res -------------------------------------------------------------------------------- /Lib/Res/Ys3_4ELW.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/Ys3_4ELW.res -------------------------------------------------------------------------------- /Lib/Res/Ys3_4ELW_1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/Ys3_4ELW_1.res -------------------------------------------------------------------------------- /Lib/Res/h2_4ELW.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/h2_4ELW.res -------------------------------------------------------------------------------- /Lib/Res/h2_4ELW_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/h2_4ELW_2.res -------------------------------------------------------------------------------- /Lib/Res/h3_4ELW.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/h3_4ELW.res -------------------------------------------------------------------------------- /Lib/Res/h3_4ELW_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/h3_4ELW_2.res -------------------------------------------------------------------------------- /Lib/Res/k1_4ELW.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/k1_4ELW.res -------------------------------------------------------------------------------- /Lib/Res/k1_4ELW_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/k1_4ELW_2.res -------------------------------------------------------------------------------- /Lib/Res/s2_4ELW.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/s2_4ELW.res -------------------------------------------------------------------------------- /Lib/Res/s2_4ELW_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/s2_4ELW_2.res -------------------------------------------------------------------------------- /Lib/Res/s3_4ELW.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/s3_4ELW.res -------------------------------------------------------------------------------- /Lib/Res/s3_4ELW_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/s3_4ELW_2.res -------------------------------------------------------------------------------- /Lib/Res/s4_ELW.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/s4_ELW.res -------------------------------------------------------------------------------- /Lib/Res/s4_ELW_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/s4_ELW_2.res -------------------------------------------------------------------------------- /Lib/Res/t0150.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t0150.res -------------------------------------------------------------------------------- /Lib/Res/t0150_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t0150_2.res -------------------------------------------------------------------------------- /Lib/Res/t0151.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t0151.res -------------------------------------------------------------------------------- /Lib/Res/t0151_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t0151_2.res -------------------------------------------------------------------------------- /Lib/Res/t0167.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t0167.res -------------------------------------------------------------------------------- /Lib/Res/t0167_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t0167_2.res -------------------------------------------------------------------------------- /Lib/Res/t0424.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t0424.res -------------------------------------------------------------------------------- /Lib/Res/t0424_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t0424_2.res -------------------------------------------------------------------------------- /Lib/Res/t0425.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t0425.res -------------------------------------------------------------------------------- /Lib/Res/t0425_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t0425_2.res -------------------------------------------------------------------------------- /Lib/Res/t0434.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t0434.res -------------------------------------------------------------------------------- /Lib/Res/t0434_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t0434_2.res -------------------------------------------------------------------------------- /Lib/Res/t0441.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t0441.res -------------------------------------------------------------------------------- /Lib/Res/t0441_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t0441_2.res -------------------------------------------------------------------------------- /Lib/Res/t1101.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1101.res -------------------------------------------------------------------------------- /Lib/Res/t1101_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1101_2.res -------------------------------------------------------------------------------- /Lib/Res/t1102.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1102.res -------------------------------------------------------------------------------- /Lib/Res/t1102_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1102_2.res -------------------------------------------------------------------------------- /Lib/Res/t1104.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1104.res -------------------------------------------------------------------------------- /Lib/Res/t1104_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1104_2.res -------------------------------------------------------------------------------- /Lib/Res/t1105.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1105.res -------------------------------------------------------------------------------- /Lib/Res/t1105_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1105_2.res -------------------------------------------------------------------------------- /Lib/Res/t1301.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1301.res -------------------------------------------------------------------------------- /Lib/Res/t1301_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1301_2.res -------------------------------------------------------------------------------- /Lib/Res/t1302.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1302.res -------------------------------------------------------------------------------- /Lib/Res/t1302_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1302_2.res -------------------------------------------------------------------------------- /Lib/Res/t1305.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1305.res -------------------------------------------------------------------------------- /Lib/Res/t1305_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1305_2.res -------------------------------------------------------------------------------- /Lib/Res/t1308.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1308.res -------------------------------------------------------------------------------- /Lib/Res/t1308_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1308_2.res -------------------------------------------------------------------------------- /Lib/Res/t1310.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1310.res -------------------------------------------------------------------------------- /Lib/Res/t1310_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1310_2.res -------------------------------------------------------------------------------- /Lib/Res/t1403.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1403.res -------------------------------------------------------------------------------- /Lib/Res/t1403_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1403_2.res -------------------------------------------------------------------------------- /Lib/Res/t1404.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1404.res -------------------------------------------------------------------------------- /Lib/Res/t1404_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1404_2.res -------------------------------------------------------------------------------- /Lib/Res/t1405.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1405.res -------------------------------------------------------------------------------- /Lib/Res/t1405_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1405_2.res -------------------------------------------------------------------------------- /Lib/Res/t1410.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1410.res -------------------------------------------------------------------------------- /Lib/Res/t1410_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1410_2.res -------------------------------------------------------------------------------- /Lib/Res/t1411.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1411.res -------------------------------------------------------------------------------- /Lib/Res/t1411_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1411_2.res -------------------------------------------------------------------------------- /Lib/Res/t1422.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1422.res -------------------------------------------------------------------------------- /Lib/Res/t1422_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1422_2.res -------------------------------------------------------------------------------- /Lib/Res/t1427.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1427.res -------------------------------------------------------------------------------- /Lib/Res/t1427_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1427_2.res -------------------------------------------------------------------------------- /Lib/Res/t1442.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1442.res -------------------------------------------------------------------------------- /Lib/Res/t1442_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1442_2.res -------------------------------------------------------------------------------- /Lib/Res/t1444.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1444.res -------------------------------------------------------------------------------- /Lib/Res/t1444_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1444_2.res -------------------------------------------------------------------------------- /Lib/Res/t1449.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1449.res -------------------------------------------------------------------------------- /Lib/Res/t1449_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1449_2.res -------------------------------------------------------------------------------- /Lib/Res/t1452.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1452.res -------------------------------------------------------------------------------- /Lib/Res/t1452_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1452_2.res -------------------------------------------------------------------------------- /Lib/Res/t1463.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1463.res -------------------------------------------------------------------------------- /Lib/Res/t1463_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1463_2.res -------------------------------------------------------------------------------- /Lib/Res/t1471.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1471.res -------------------------------------------------------------------------------- /Lib/Res/t1471_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1471_2.res -------------------------------------------------------------------------------- /Lib/Res/t1475.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1475.res -------------------------------------------------------------------------------- /Lib/Res/t1475_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1475_2.res -------------------------------------------------------------------------------- /Lib/Res/t1485.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1485.res -------------------------------------------------------------------------------- /Lib/Res/t1485_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1485_2.res -------------------------------------------------------------------------------- /Lib/Res/t1486.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1486.res -------------------------------------------------------------------------------- /Lib/Res/t1486_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1486_2.res -------------------------------------------------------------------------------- /Lib/Res/t1488.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1488.res -------------------------------------------------------------------------------- /Lib/Res/t1488_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1488_2.res -------------------------------------------------------------------------------- /Lib/Res/t1489.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1489.res -------------------------------------------------------------------------------- /Lib/Res/t1489_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1489_2.res -------------------------------------------------------------------------------- /Lib/Res/t1511.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1511.res -------------------------------------------------------------------------------- /Lib/Res/t1511_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1511_2.res -------------------------------------------------------------------------------- /Lib/Res/t1514.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1514.res -------------------------------------------------------------------------------- /Lib/Res/t1514_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1514_2.res -------------------------------------------------------------------------------- /Lib/Res/t1516.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1516.res -------------------------------------------------------------------------------- /Lib/Res/t1516_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1516_2.res -------------------------------------------------------------------------------- /Lib/Res/t1531.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1531.res -------------------------------------------------------------------------------- /Lib/Res/t1531_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1531_2.res -------------------------------------------------------------------------------- /Lib/Res/t1532.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1532.res -------------------------------------------------------------------------------- /Lib/Res/t1532_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1532_2.res -------------------------------------------------------------------------------- /Lib/Res/t1533.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1533.res -------------------------------------------------------------------------------- /Lib/Res/t1533_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1533_2.res -------------------------------------------------------------------------------- /Lib/Res/t1537.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1537.res -------------------------------------------------------------------------------- /Lib/Res/t1537_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1537_2.res -------------------------------------------------------------------------------- /Lib/Res/t1601.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1601.res -------------------------------------------------------------------------------- /Lib/Res/t1601_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1601_2.res -------------------------------------------------------------------------------- /Lib/Res/t1602.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1602.res -------------------------------------------------------------------------------- /Lib/Res/t1602_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1602_2.res -------------------------------------------------------------------------------- /Lib/Res/t1603.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1603.res -------------------------------------------------------------------------------- /Lib/Res/t1603_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1603_2.res -------------------------------------------------------------------------------- /Lib/Res/t1615.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1615.res -------------------------------------------------------------------------------- /Lib/Res/t1615_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1615_2.res -------------------------------------------------------------------------------- /Lib/Res/t1617.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1617.res -------------------------------------------------------------------------------- /Lib/Res/t1617_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1617_2.res -------------------------------------------------------------------------------- /Lib/Res/t1621.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1621.res -------------------------------------------------------------------------------- /Lib/Res/t1621_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1621_2.res -------------------------------------------------------------------------------- /Lib/Res/t1631.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1631.res -------------------------------------------------------------------------------- /Lib/Res/t1631_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1631_2.res -------------------------------------------------------------------------------- /Lib/Res/t1632.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1632.res -------------------------------------------------------------------------------- /Lib/Res/t1632_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1632_2.res -------------------------------------------------------------------------------- /Lib/Res/t1633.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1633.res -------------------------------------------------------------------------------- /Lib/Res/t1633_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1633_2.res -------------------------------------------------------------------------------- /Lib/Res/t1636.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1636.res -------------------------------------------------------------------------------- /Lib/Res/t1636_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1636_2.res -------------------------------------------------------------------------------- /Lib/Res/t1637.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1637.res -------------------------------------------------------------------------------- /Lib/Res/t1637_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1637_2.res -------------------------------------------------------------------------------- /Lib/Res/t1638.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1638.res -------------------------------------------------------------------------------- /Lib/Res/t1638_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1638_2.res -------------------------------------------------------------------------------- /Lib/Res/t1640.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1640.res -------------------------------------------------------------------------------- /Lib/Res/t1640_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1640_2.res -------------------------------------------------------------------------------- /Lib/Res/t1662.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1662.res -------------------------------------------------------------------------------- /Lib/Res/t1662_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1662_2.res -------------------------------------------------------------------------------- /Lib/Res/t1664.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1664.res -------------------------------------------------------------------------------- /Lib/Res/t1664_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1664_2.res -------------------------------------------------------------------------------- /Lib/Res/t1665.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1665.res -------------------------------------------------------------------------------- /Lib/Res/t1665_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1665_2.res -------------------------------------------------------------------------------- /Lib/Res/t1701.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1701.res -------------------------------------------------------------------------------- /Lib/Res/t1701_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1701_2.res -------------------------------------------------------------------------------- /Lib/Res/t1702.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1702.res -------------------------------------------------------------------------------- /Lib/Res/t1702_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1702_2.res -------------------------------------------------------------------------------- /Lib/Res/t1717.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1717.res -------------------------------------------------------------------------------- /Lib/Res/t1717_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1717_2.res -------------------------------------------------------------------------------- /Lib/Res/t1752.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1752.res -------------------------------------------------------------------------------- /Lib/Res/t1752_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1752_2.res -------------------------------------------------------------------------------- /Lib/Res/t1764.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1764.res -------------------------------------------------------------------------------- /Lib/Res/t1764_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1764_2.res -------------------------------------------------------------------------------- /Lib/Res/t1771.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1771.res -------------------------------------------------------------------------------- /Lib/Res/t1771_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1771_2.res -------------------------------------------------------------------------------- /Lib/Res/t1809.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1809.res -------------------------------------------------------------------------------- /Lib/Res/t1809_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1809_2.res -------------------------------------------------------------------------------- /Lib/Res/t1825.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1825.res -------------------------------------------------------------------------------- /Lib/Res/t1825_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1825_2.res -------------------------------------------------------------------------------- /Lib/Res/t1826.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1826.res -------------------------------------------------------------------------------- /Lib/Res/t1826_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1826_2.res -------------------------------------------------------------------------------- /Lib/Res/t1857.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1857.res -------------------------------------------------------------------------------- /Lib/Res/t1857_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1857_2.res -------------------------------------------------------------------------------- /Lib/Res/t1866.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1866.res -------------------------------------------------------------------------------- /Lib/Res/t1866_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1866_2.res -------------------------------------------------------------------------------- /Lib/Res/t1901.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1901.res -------------------------------------------------------------------------------- /Lib/Res/t1901_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1901_2.res -------------------------------------------------------------------------------- /Lib/Res/t1902.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1902.res -------------------------------------------------------------------------------- /Lib/Res/t1902_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1902_2.res -------------------------------------------------------------------------------- /Lib/Res/t1903.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1903.res -------------------------------------------------------------------------------- /Lib/Res/t1903_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1903_2.res -------------------------------------------------------------------------------- /Lib/Res/t1904.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1904.res -------------------------------------------------------------------------------- /Lib/Res/t1904_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1904_2.res -------------------------------------------------------------------------------- /Lib/Res/t1906.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1906.res -------------------------------------------------------------------------------- /Lib/Res/t1906_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1906_2.res -------------------------------------------------------------------------------- /Lib/Res/t1921.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1921.res -------------------------------------------------------------------------------- /Lib/Res/t1921_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1921_2.res -------------------------------------------------------------------------------- /Lib/Res/t1926.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1926.res -------------------------------------------------------------------------------- /Lib/Res/t1926_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1926_2.res -------------------------------------------------------------------------------- /Lib/Res/t1927.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1927.res -------------------------------------------------------------------------------- /Lib/Res/t1927_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1927_2.res -------------------------------------------------------------------------------- /Lib/Res/t1941.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1941.res -------------------------------------------------------------------------------- /Lib/Res/t1941_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1941_2.res -------------------------------------------------------------------------------- /Lib/Res/t1950.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1950.res -------------------------------------------------------------------------------- /Lib/Res/t1950_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1950_2.res -------------------------------------------------------------------------------- /Lib/Res/t1951.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1951.res -------------------------------------------------------------------------------- /Lib/Res/t1951_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1951_2.res -------------------------------------------------------------------------------- /Lib/Res/t1954.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1954.res -------------------------------------------------------------------------------- /Lib/Res/t1954_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1954_2.res -------------------------------------------------------------------------------- /Lib/Res/t1955.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1955.res -------------------------------------------------------------------------------- /Lib/Res/t1955_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1955_2.res -------------------------------------------------------------------------------- /Lib/Res/t1956.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1956.res -------------------------------------------------------------------------------- /Lib/Res/t1956_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1956_2.res -------------------------------------------------------------------------------- /Lib/Res/t1958.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1958.res -------------------------------------------------------------------------------- /Lib/Res/t1958_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1958_2.res -------------------------------------------------------------------------------- /Lib/Res/t1959.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1959.res -------------------------------------------------------------------------------- /Lib/Res/t1959_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1959_2.res -------------------------------------------------------------------------------- /Lib/Res/t1960.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1960.res -------------------------------------------------------------------------------- /Lib/Res/t1960_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1960_2.res -------------------------------------------------------------------------------- /Lib/Res/t1961.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1961.res -------------------------------------------------------------------------------- /Lib/Res/t1961_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1961_2.res -------------------------------------------------------------------------------- /Lib/Res/t1964.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1964.res -------------------------------------------------------------------------------- /Lib/Res/t1964_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1964_2.res -------------------------------------------------------------------------------- /Lib/Res/t1966.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1966.res -------------------------------------------------------------------------------- /Lib/Res/t1966_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1966_2.res -------------------------------------------------------------------------------- /Lib/Res/t1971.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1971.res -------------------------------------------------------------------------------- /Lib/Res/t1971_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1971_2.res -------------------------------------------------------------------------------- /Lib/Res/t1972.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1972.res -------------------------------------------------------------------------------- /Lib/Res/t1972_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1972_2.res -------------------------------------------------------------------------------- /Lib/Res/t1973.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1973.res -------------------------------------------------------------------------------- /Lib/Res/t1973_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1973_2.res -------------------------------------------------------------------------------- /Lib/Res/t1974.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1974.res -------------------------------------------------------------------------------- /Lib/Res/t1974_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1974_2.res -------------------------------------------------------------------------------- /Lib/Res/t1981.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1981.res -------------------------------------------------------------------------------- /Lib/Res/t1981_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t1981_2.res -------------------------------------------------------------------------------- /Lib/Res/t2101.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2101.res -------------------------------------------------------------------------------- /Lib/Res/t2101_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2101_2.res -------------------------------------------------------------------------------- /Lib/Res/t2105.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2105.res -------------------------------------------------------------------------------- /Lib/Res/t2105_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2105_2.res -------------------------------------------------------------------------------- /Lib/Res/t2106.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2106.res -------------------------------------------------------------------------------- /Lib/Res/t2106_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2106_2.res -------------------------------------------------------------------------------- /Lib/Res/t2201.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2201.res -------------------------------------------------------------------------------- /Lib/Res/t2201_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2201_2.res -------------------------------------------------------------------------------- /Lib/Res/t2203.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2203.res -------------------------------------------------------------------------------- /Lib/Res/t2203_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2203_2.res -------------------------------------------------------------------------------- /Lib/Res/t2209.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2209.res -------------------------------------------------------------------------------- /Lib/Res/t2209_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2209_2.res -------------------------------------------------------------------------------- /Lib/Res/t2210.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2210.res -------------------------------------------------------------------------------- /Lib/Res/t2210_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2210_2.res -------------------------------------------------------------------------------- /Lib/Res/t2301.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2301.res -------------------------------------------------------------------------------- /Lib/Res/t2301_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2301_2.res -------------------------------------------------------------------------------- /Lib/Res/t2405.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2405.res -------------------------------------------------------------------------------- /Lib/Res/t2405_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2405_2.res -------------------------------------------------------------------------------- /Lib/Res/t2421.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2421.res -------------------------------------------------------------------------------- /Lib/Res/t2421_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2421_2.res -------------------------------------------------------------------------------- /Lib/Res/t2541.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2541.res -------------------------------------------------------------------------------- /Lib/Res/t2541_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2541_2.res -------------------------------------------------------------------------------- /Lib/Res/t2545.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2545.res -------------------------------------------------------------------------------- /Lib/Res/t2545_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2545_2.res -------------------------------------------------------------------------------- /Lib/Res/t2801.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2801.res -------------------------------------------------------------------------------- /Lib/Res/t2801_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2801_2.res -------------------------------------------------------------------------------- /Lib/Res/t2802.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2802.res -------------------------------------------------------------------------------- /Lib/Res/t2802_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2802_2.res -------------------------------------------------------------------------------- /Lib/Res/t2804.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2804.res -------------------------------------------------------------------------------- /Lib/Res/t2804_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2804_2.res -------------------------------------------------------------------------------- /Lib/Res/t2805.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2805.res -------------------------------------------------------------------------------- /Lib/Res/t2805_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2805_2.res -------------------------------------------------------------------------------- /Lib/Res/t2813.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2813.res -------------------------------------------------------------------------------- /Lib/Res/t2813_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2813_2.res -------------------------------------------------------------------------------- /Lib/Res/t2814.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2814.res -------------------------------------------------------------------------------- /Lib/Res/t2814_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2814_2.res -------------------------------------------------------------------------------- /Lib/Res/t2816.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2816.res -------------------------------------------------------------------------------- /Lib/Res/t2816_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2816_2.res -------------------------------------------------------------------------------- /Lib/Res/t2830.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2830.res -------------------------------------------------------------------------------- /Lib/Res/t2830_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2830_2.res -------------------------------------------------------------------------------- /Lib/Res/t2831.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2831.res -------------------------------------------------------------------------------- /Lib/Res/t2831_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2831_2.res -------------------------------------------------------------------------------- /Lib/Res/t2832.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2832.res -------------------------------------------------------------------------------- /Lib/Res/t2832_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2832_2.res -------------------------------------------------------------------------------- /Lib/Res/t2833.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2833.res -------------------------------------------------------------------------------- /Lib/Res/t2833_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2833_2.res -------------------------------------------------------------------------------- /Lib/Res/t2835.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2835.res -------------------------------------------------------------------------------- /Lib/Res/t2835_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t2835_2.res -------------------------------------------------------------------------------- /Lib/Res/t3102.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t3102.res -------------------------------------------------------------------------------- /Lib/Res/t3102_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t3102_2.res -------------------------------------------------------------------------------- /Lib/Res/t3202.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t3202.res -------------------------------------------------------------------------------- /Lib/Res/t3202_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t3202_2.res -------------------------------------------------------------------------------- /Lib/Res/t3320.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t3320.res -------------------------------------------------------------------------------- /Lib/Res/t3320_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t3320_2.res -------------------------------------------------------------------------------- /Lib/Res/t3341.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t3341.res -------------------------------------------------------------------------------- /Lib/Res/t3341_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t3341_2.res -------------------------------------------------------------------------------- /Lib/Res/t3401.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t3401.res -------------------------------------------------------------------------------- /Lib/Res/t3401_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t3401_2.res -------------------------------------------------------------------------------- /Lib/Res/t3518.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t3518.res -------------------------------------------------------------------------------- /Lib/Res/t3518_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t3518_2.res -------------------------------------------------------------------------------- /Lib/Res/t3521.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t3521.res -------------------------------------------------------------------------------- /Lib/Res/t3521_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t3521_2.res -------------------------------------------------------------------------------- /Lib/Res/t4201.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t4201.res -------------------------------------------------------------------------------- /Lib/Res/t4201_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t4201_2.res -------------------------------------------------------------------------------- /Lib/Res/t4203.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t4203.res -------------------------------------------------------------------------------- /Lib/Res/t4203_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t4203_2.res -------------------------------------------------------------------------------- /Lib/Res/t8401.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8401.res -------------------------------------------------------------------------------- /Lib/Res/t8401_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8401_2.res -------------------------------------------------------------------------------- /Lib/Res/t8402.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8402.res -------------------------------------------------------------------------------- /Lib/Res/t8402_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8402_2.res -------------------------------------------------------------------------------- /Lib/Res/t8403.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8403.res -------------------------------------------------------------------------------- /Lib/Res/t8403_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8403_2.res -------------------------------------------------------------------------------- /Lib/Res/t8404.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8404.res -------------------------------------------------------------------------------- /Lib/Res/t8404_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8404_2.res -------------------------------------------------------------------------------- /Lib/Res/t8405.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8405.res -------------------------------------------------------------------------------- /Lib/Res/t8405_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8405_2.res -------------------------------------------------------------------------------- /Lib/Res/t8406.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8406.res -------------------------------------------------------------------------------- /Lib/Res/t8406_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8406_2.res -------------------------------------------------------------------------------- /Lib/Res/t8407.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8407.res -------------------------------------------------------------------------------- /Lib/Res/t8407_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8407_2.res -------------------------------------------------------------------------------- /Lib/Res/t8408.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8408.res -------------------------------------------------------------------------------- /Lib/Res/t8408_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8408_2.res -------------------------------------------------------------------------------- /Lib/Res/t8409.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8409.res -------------------------------------------------------------------------------- /Lib/Res/t8409_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8409_2.res -------------------------------------------------------------------------------- /Lib/Res/t8411.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8411.res -------------------------------------------------------------------------------- /Lib/Res/t8411_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8411_2.res -------------------------------------------------------------------------------- /Lib/Res/t8412.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8412.res -------------------------------------------------------------------------------- /Lib/Res/t8412_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8412_2.res -------------------------------------------------------------------------------- /Lib/Res/t8413.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8413.res -------------------------------------------------------------------------------- /Lib/Res/t8413_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8413_2.res -------------------------------------------------------------------------------- /Lib/Res/t8414.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8414.res -------------------------------------------------------------------------------- /Lib/Res/t8414_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8414_2.res -------------------------------------------------------------------------------- /Lib/Res/t8415.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8415.res -------------------------------------------------------------------------------- /Lib/Res/t8415_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8415_2.res -------------------------------------------------------------------------------- /Lib/Res/t8416.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8416.res -------------------------------------------------------------------------------- /Lib/Res/t8416_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8416_2.res -------------------------------------------------------------------------------- /Lib/Res/t8417.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8417.res -------------------------------------------------------------------------------- /Lib/Res/t8417_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8417_2.res -------------------------------------------------------------------------------- /Lib/Res/t8418.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8418.res -------------------------------------------------------------------------------- /Lib/Res/t8418_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8418_2.res -------------------------------------------------------------------------------- /Lib/Res/t8419.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8419.res -------------------------------------------------------------------------------- /Lib/Res/t8419_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8419_2.res -------------------------------------------------------------------------------- /Lib/Res/t8424.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8424.res -------------------------------------------------------------------------------- /Lib/Res/t8424_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8424_2.res -------------------------------------------------------------------------------- /Lib/Res/t8425.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8425.res -------------------------------------------------------------------------------- /Lib/Res/t8425_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8425_2.res -------------------------------------------------------------------------------- /Lib/Res/t8426.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8426.res -------------------------------------------------------------------------------- /Lib/Res/t8426_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8426_2.res -------------------------------------------------------------------------------- /Lib/Res/t8427.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8427.res -------------------------------------------------------------------------------- /Lib/Res/t8427_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8427_2.res -------------------------------------------------------------------------------- /Lib/Res/t8428.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8428.res -------------------------------------------------------------------------------- /Lib/Res/t8428_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8428_2.res -------------------------------------------------------------------------------- /Lib/Res/t8429.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8429.res -------------------------------------------------------------------------------- /Lib/Res/t8429_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8429_2.res -------------------------------------------------------------------------------- /Lib/Res/t8430.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8430.res -------------------------------------------------------------------------------- /Lib/Res/t8430_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8430_2.res -------------------------------------------------------------------------------- /Lib/Res/t8431.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8431.res -------------------------------------------------------------------------------- /Lib/Res/t8431_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8431_2.res -------------------------------------------------------------------------------- /Lib/Res/t8432.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8432.res -------------------------------------------------------------------------------- /Lib/Res/t8432_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8432_2.res -------------------------------------------------------------------------------- /Lib/Res/t8433.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8433.res -------------------------------------------------------------------------------- /Lib/Res/t8433_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8433_2.res -------------------------------------------------------------------------------- /Lib/Res/t8434.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8434.res -------------------------------------------------------------------------------- /Lib/Res/t8434_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8434_2.res -------------------------------------------------------------------------------- /Lib/Res/t8435.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8435.res -------------------------------------------------------------------------------- /Lib/Res/t8435_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8435_2.res -------------------------------------------------------------------------------- /Lib/Res/t8436.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8436.res -------------------------------------------------------------------------------- /Lib/Res/t8436_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8436_2.res -------------------------------------------------------------------------------- /Lib/Res/t8437.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8437.res -------------------------------------------------------------------------------- /Lib/Res/t8437_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t8437_2.res -------------------------------------------------------------------------------- /Lib/Res/t9905.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t9905.res -------------------------------------------------------------------------------- /Lib/Res/t9905_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t9905_2.res -------------------------------------------------------------------------------- /Lib/Res/t9907.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t9907.res -------------------------------------------------------------------------------- /Lib/Res/t9907_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t9907_2.res -------------------------------------------------------------------------------- /Lib/Res/t9942.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t9942.res -------------------------------------------------------------------------------- /Lib/Res/t9942_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t9942_2.res -------------------------------------------------------------------------------- /Lib/Res/t9943.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t9943.res -------------------------------------------------------------------------------- /Lib/Res/t9943_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t9943_2.res -------------------------------------------------------------------------------- /Lib/Res/t9944.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t9944.res -------------------------------------------------------------------------------- /Lib/Res/t9944_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t9944_2.res -------------------------------------------------------------------------------- /Lib/Res/t9945.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t9945.res -------------------------------------------------------------------------------- /Lib/Res/t9945_2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Res/t9945_2.res -------------------------------------------------------------------------------- /Lib/SKComdCM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/SKComdCM.dll -------------------------------------------------------------------------------- /Lib/SKComdEM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/SKComdEM.dll -------------------------------------------------------------------------------- /Lib/SKComdIF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/SKComdIF.dll -------------------------------------------------------------------------------- /Lib/SKComdSC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/SKComdSC.dll -------------------------------------------------------------------------------- /Lib/SKCommCM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/SKCommCM.dll -------------------------------------------------------------------------------- /Lib/SKCommEM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/SKCommEM.dll -------------------------------------------------------------------------------- /Lib/SKCommIC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/SKCommIC.dll -------------------------------------------------------------------------------- /Lib/SKCommIF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/SKCommIF.dll -------------------------------------------------------------------------------- /Lib/SKCommSC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/SKCommSC.dll -------------------------------------------------------------------------------- /Lib/SQLitePCLRaw.batteries_v2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/SQLitePCLRaw.batteries_v2.dll -------------------------------------------------------------------------------- /Lib/SQLitePCLRaw.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/SQLitePCLRaw.core.dll -------------------------------------------------------------------------------- /Lib/SQLitePCLRaw.nativelibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/SQLitePCLRaw.nativelibrary.dll -------------------------------------------------------------------------------- /Lib/SQLitePCLRaw.provider.dynamic_cdecl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/SQLitePCLRaw.provider.dynamic_cdecl.dll -------------------------------------------------------------------------------- /Lib/Sample_xingACE.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Sample_xingACE.exe -------------------------------------------------------------------------------- /Lib/Sys/AceTR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Sys/AceTR.txt -------------------------------------------------------------------------------- /Lib/Sys/DevCenter.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Sys/DevCenter.ini -------------------------------------------------------------------------------- /Lib/Sys/Guide.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Sys/Guide.ini -------------------------------------------------------------------------------- /Lib/Sys/INISAFENet.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Sys/INISAFENet.cnf -------------------------------------------------------------------------------- /Lib/Sys/RD.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Sys/RD.ini -------------------------------------------------------------------------------- /Lib/Sys/default.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Sys/default.lic -------------------------------------------------------------------------------- /Lib/Sys/sample_cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Sys/sample_cert.der -------------------------------------------------------------------------------- /Lib/Sys/sample_priv.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Sys/sample_priv.key -------------------------------------------------------------------------------- /Lib/Sys/webinfo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/Sys/webinfo.ini -------------------------------------------------------------------------------- /Lib/XA_Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/XA_Common.dll -------------------------------------------------------------------------------- /Lib/XA_DataSet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/XA_DataSet.dll -------------------------------------------------------------------------------- /Lib/XA_Session.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/XA_Session.dll -------------------------------------------------------------------------------- /Lib/XecureS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/XecureS.dll -------------------------------------------------------------------------------- /Lib/XingAPI_Sample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/XingAPI_Sample.exe -------------------------------------------------------------------------------- /Lib/atl100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/atl100.dll -------------------------------------------------------------------------------- /Lib/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/e_sqlite3.dll -------------------------------------------------------------------------------- /Lib/ebestAPIDaemon.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/ebestAPIDaemon.exe -------------------------------------------------------------------------------- /Lib/ebestAPIdaemon.ini: -------------------------------------------------------------------------------- 1 | [INFO] 2 | PORT=10000 3 | -------------------------------------------------------------------------------- /Lib/enmsgoem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/enmsgoem.dll -------------------------------------------------------------------------------- /Lib/glb_oem.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/glb_oem.ini -------------------------------------------------------------------------------- /Lib/hkdnsres.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/hkdnsres.dll -------------------------------------------------------------------------------- /Lib/inicore_v2.4.3.1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/inicore_v2.4.3.1.dll -------------------------------------------------------------------------------- /Lib/inicrypto_v5.2.0.1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/inicrypto_v5.2.0.1.dll -------------------------------------------------------------------------------- /Lib/inipki_v5.2.7.1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/inipki_v5.2.7.1.dll -------------------------------------------------------------------------------- /Lib/inisafenet_v7.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/inisafenet_v7.2.dll -------------------------------------------------------------------------------- /Lib/mfc100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/mfc100.dll -------------------------------------------------------------------------------- /Lib/mfc110.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/mfc110.dll -------------------------------------------------------------------------------- /Lib/mfc42.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/mfc42.dll -------------------------------------------------------------------------------- /Lib/msvcp100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/msvcp100.dll -------------------------------------------------------------------------------- /Lib/msvcp110.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/msvcp110.dll -------------------------------------------------------------------------------- /Lib/msvcp60.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/msvcp60.dll -------------------------------------------------------------------------------- /Lib/msvcr100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/msvcr100.dll -------------------------------------------------------------------------------- /Lib/msvcr110.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/msvcr110.dll -------------------------------------------------------------------------------- /Lib/msvcrt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/msvcrt.dll -------------------------------------------------------------------------------- /Lib/nsldap32v11.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/nsldap32v11.dll -------------------------------------------------------------------------------- /Lib/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/readme.txt -------------------------------------------------------------------------------- /Lib/reg.bat: -------------------------------------------------------------------------------- 1 | regsvr32 XA_Session.dll 2 | regsvr32 XA_DataSet.dll -------------------------------------------------------------------------------- /Lib/runtimes/win-x86/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/runtimes/win-x86/native/e_sqlite3.dll -------------------------------------------------------------------------------- /Lib/unreg.bat: -------------------------------------------------------------------------------- 1 | regsvr32 -u XA_Session.dll 2 | regsvr32 -u XA_DataSet.dll -------------------------------------------------------------------------------- /Lib/xingACE.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/xingACE.exe -------------------------------------------------------------------------------- /Lib/xingAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/xingAPI.dll -------------------------------------------------------------------------------- /Lib/xingAPI.ini: -------------------------------------------------------------------------------- 1 | [MONITORING] 2 | ID= 3 | TIME= 4 | MEDIA= 5 | DISCONNECT_COUNT=0 6 | ABNORMAL_TERMINATION=0 7 | -------------------------------------------------------------------------------- /Lib/xingAceRDSender.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Lib/xingAceRDSender.dll -------------------------------------------------------------------------------- /Manifests/Interop.XA_DataSetLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Manifests/Interop.XA_DataSetLib.dll -------------------------------------------------------------------------------- /Manifests/Interop.XA_SessionLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/Manifests/Interop.XA_SessionLib.dll -------------------------------------------------------------------------------- /Manifests/XA_Session.dll.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 16 | 17 | -------------------------------------------------------------------------------- /Manifests/import_lib.bat: -------------------------------------------------------------------------------- 1 | 2 | FOR /F %%I IN ("%0") DO SET CURRENTDIR=%%~dpI 3 | tlbimp C:\eBEST\xingAPI\XA_DataSet.dll /out:Interop.XA_DataSetLib.dll /namespace:XA_DataSetLib 4 | tlbimp C:\eBEST\xingAPI\XA_Session.dll /out:Interop.XA_SessionLib.dll /namespace:XA_SessionLib -------------------------------------------------------------------------------- /Res2Query/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Res2Query")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Res2Query")] 13 | [assembly: AssemblyCopyright("Copyright © 2020")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("45e35851-8ba1-4b01-a3ed-bce85e352860")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /WindowsFormsApp1/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace WindowsFormsApp1 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new Form1()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /WindowsFormsApp1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace WindowsFormsApp1.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /WindowsFormsApp1/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WindowsFormsApp1/WindowsFormsApp1.exe.manifest: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /XingAPINet.Sqlite/XingAPINet.Sqlite.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | netstandard2.0 5 | x86 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /XingAPINet/AutoGeneratedPartial/cspaq12200.partial.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace XingAPINet 7 | { 8 | partial class cspaq12200 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /XingAPINet/AutoGeneratedPartial/t0424.partial.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace XingAPINet 7 | { 8 | partial class XQt0424 9 | { 10 | public static class PRCGB 11 | { 12 | public const char 평균단가 = '1'; 13 | public const char BEP단가 = '2'; 14 | } 15 | 16 | public static class CHEGB 17 | { 18 | public const char 결제기준잔고 = '0'; 19 | public const char 체결기준 = '2'; 20 | } 21 | 22 | public static class DANGB 23 | { 24 | public const char 정규장 = '0'; 25 | public const char 시간외단일가 = '1'; 26 | } 27 | 28 | public static class CHARGE 29 | { 30 | public const char 제비용미포함 = '0'; 31 | public const char 제비용포함 = '1'; 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /XingAPINet/AutoGeneratedPartial/t1302.partial.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace XingAPINet 7 | { 8 | partial class XQt1302 9 | { 10 | public static class Gubun 11 | { 12 | public const char _30초 = '0'; 13 | public const char _1분 = '1'; 14 | public const char _3분 = '2'; 15 | public const char _5분 = '3'; 16 | public const char _10분 = '4'; 17 | public const char _30분 = '5'; 18 | public const char _60분 = '6'; 19 | } 20 | 21 | public static class SignCode 22 | { 23 | public const char 상한 = '1'; 24 | public const char 상승 = '2'; 25 | public const char 보합 = '3'; 26 | public const char 하한 = '4'; 27 | public const char 하락 = '5'; 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /XingAPINet/AutoGeneratedPartial/t1305.partial.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace XingAPINet 7 | { 8 | partial class XQt1305 9 | { 10 | public static class DWMCode 11 | { 12 | public const long 일 = 1; 13 | public const long 주 = 2; 14 | public const long 월 = 3; 15 | } 16 | 17 | public static class SignCode 18 | { 19 | public const char 상한 = '1'; 20 | public const char 상승 = '2'; 21 | public const char 보합 = '3'; 22 | public const char 하한 = '4'; 23 | public const char 하락 = '5'; 24 | } 25 | 26 | public static class OSignCode 27 | { 28 | public const char 상승 = '2'; 29 | public const char 보합 = '3'; 30 | public const char 하락 = '5'; 31 | } 32 | 33 | public static class HSignCode 34 | { 35 | public const char 상승 = '2'; 36 | public const char 보합 = '3'; 37 | public const char 하락 = '5'; 38 | } 39 | 40 | public static class LSignCode 41 | { 42 | public const char 상승 = '2'; 43 | public const char 보합 = '3'; 44 | public const char 하락 = '5'; 45 | } 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /XingAPINet/AutoGeneratedPartial/t1310.partial.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace XingAPINet 7 | { 8 | partial class XQt1310 9 | { 10 | public static class DayGB 11 | { 12 | public const char 당일 = '0'; 13 | public const char 전일 = '1'; 14 | } 15 | 16 | public static class TimeGB 17 | { 18 | public const char 분 = '0'; 19 | public const char 틱 = '1'; 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /XingAPINet/AutoGeneratedPartial/t1475.partial.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace XingAPINet 7 | { 8 | partial class XQt1475 9 | { 10 | public static class VPType 11 | { 12 | public const char 시간별 = '0'; 13 | public const char 일별 = '1'; 14 | } 15 | 16 | public static class Gubun 17 | { 18 | public const char 일반조회 = '0'; 19 | public const char 차트조회 = '1'; 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /XingAPINet/AutoGeneratedPartial/t1511.partial.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace XingAPINet 7 | { 8 | public partial class XQt1511 9 | { 10 | public static class Upcode 11 | { 12 | public const string 코스피 = "001"; 13 | public const string 코스피200 = "101"; 14 | public const string KRX100 = "501"; 15 | public const string 코스닥 = "301"; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /XingAPINet/AutoGeneratedPartial/t1514.partial.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace XingAPINet 7 | { 8 | public partial class XQt1514 9 | { 10 | public static class Gubun2 11 | { 12 | public const char 일 = '1'; 13 | public const char 주 = '2'; 14 | public const char 월 = '3'; 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /XingAPINet/AutoGeneratedPartial/t1533.partial.cs: -------------------------------------------------------------------------------- 1 | 2 | 3 | namespace XingAPINet 4 | { 5 | public enum XQt1533Gubun : ushort 6 | { 7 | 상승율상위 = '1', 8 | 하락율상위 = '2', 9 | 거래증가율상위 = '3', 10 | 거래증가율하위 = '4', 11 | 상승종목비율상위 = '5', 12 | 상승종목비율하위 = '6', 13 | 기준대비상승율상위 = '7', 14 | 기준대비하락율상위 = '8', 15 | } 16 | 17 | public partial class XQt1533 18 | { 19 | public static XQAllOutBlocks Get(XQt1533Gubun gubun = XQt1533Gubun.상승율상위, long chgdate = default) 20 | { 21 | return Get((char)gubun, chgdate); 22 | } 23 | } 24 | } -------------------------------------------------------------------------------- /XingAPINet/AutoGeneratedPartial/t1702.partial.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace XingAPINet 7 | { 8 | partial class XQt1702 9 | { 10 | public static class VolvalgbCode 11 | { 12 | public const char 금액 = '0'; 13 | public const char 주량 = '1'; 14 | public const char 단가 = '2'; 15 | } 16 | 17 | public static class MsmdgbCode 18 | { 19 | public const char 순매수 = '0'; 20 | public const char 매수 = '1'; 21 | public const char 매도 = '2'; 22 | } 23 | 24 | public static class CumulgbCode 25 | { 26 | public const char 일간 = '0'; 27 | public const char 누적 = '1'; 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /XingAPINet/AutoGeneratedPartial/t1717.partial.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace XingAPINet 7 | { 8 | partial class XQt1717 9 | { 10 | public static class Gubun 11 | { 12 | public const char 일별 = '0'; 13 | public const char 누적 = '1'; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /XingAPINet/AutoGeneratedPartial/t8419.partial.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace XingAPINet 7 | { 8 | public partial class XQt8419 9 | { 10 | public static class Comp 11 | { 12 | public const char 압축 = 'Y'; 13 | public const char 비압축 = 'N'; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /XingAPINet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("XingAPINet")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("XingAPINet")] 13 | [assembly: AssemblyCopyright("Copyright © 2020")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("90909cf8-707b-452d-9657-2fc14354d233")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.1.6.0")] 36 | [assembly: AssemblyFileVersion("1.1.6.0")] 37 | -------------------------------------------------------------------------------- /XingAPINet/XingAPINet.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | XingAPINet 5 | C# port for eBEST XingAPI 6 | 1.1.6 7 | SeongTae Jeong 8 | false 9 | C# Wrapper classes for eBEST XING API. 10 | XING, eBEST 11 | https://github.com/stjeong/XingAPI 12 | MIT 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /XingAPINet/XingBlock.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Text; 6 | 7 | namespace XingAPINet 8 | { 9 | public abstract partial class XingBlock 10 | { 11 | public bool IsValidData = true; 12 | public string InvalidReason; 13 | 14 | public abstract string GetBlockName(); 15 | 16 | public abstract Dictionary GetFieldsInfo(); 17 | 18 | public void Dump(TextWriter writer, DumpOutputType outputType = DumpOutputType.FormattedKeyValue) 19 | { 20 | Dictionary dict = GetFieldsInfo(); 21 | writer.Dump(this.GetBlockName(), dict, outputType); 22 | } 23 | 24 | public void CopyValueFromBlock(XingBlock fromBlock) 25 | { 26 | var fields = fromBlock.GetFieldsInfo(); 27 | 28 | foreach (string key in fields.Keys) 29 | { 30 | XAQueryFieldInfo info = fields[key]; 31 | SetFieldValue(key, info); 32 | } 33 | } 34 | 35 | public abstract void SetFieldValue(string fieldName, XAQueryFieldInfo fieldInfo); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /XingAPINet/nuget/root/XingAPINet.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | XingAPINet 5 | C# port for eBEST XingAPI 6 | 1.1.6 7 | SeongTae Jeong 8 | false 9 | C# Wrapper classes for eBEST XING API. 10 | XING, eBEST 11 | https://github.com/stjeong/XingAPI 12 | MIT 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /XingAPINet/nuget/root/lib/net40/Interop.XA_DataSetLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/XingAPINet/nuget/root/lib/net40/Interop.XA_DataSetLib.dll -------------------------------------------------------------------------------- /XingAPINet/nuget/root/lib/net40/Interop.XA_SessionLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/XingAPINet/nuget/root/lib/net40/Interop.XA_SessionLib.dll -------------------------------------------------------------------------------- /XingAPINet/nuget/root/lib/net40/XA_Session.dll.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 16 | 17 | -------------------------------------------------------------------------------- /XingAPINet/nuget/root/lib/net40/XingAPINet.Sqlite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/XingAPINet/nuget/root/lib/net40/XingAPINet.Sqlite.dll -------------------------------------------------------------------------------- /XingAPINet/nuget/root/lib/net40/XingAPINet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/XingAPINet/nuget/root/lib/net40/XingAPINet.dll -------------------------------------------------------------------------------- /XingAPINet/nuget_output/XingAPINet.1.1.2.nupkg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/XingAPINet/nuget_output/XingAPINet.1.1.2.nupkg.zip -------------------------------------------------------------------------------- /XingNativePack/atl100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/XingNativePack/atl100.dll -------------------------------------------------------------------------------- /XingNativePack/ebestAPIDaemon.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/XingNativePack/ebestAPIDaemon.exe -------------------------------------------------------------------------------- /XingNativePack/ebestAPIdaemon.ini: -------------------------------------------------------------------------------- 1 | [INFO] 2 | PORT=10000 3 | -------------------------------------------------------------------------------- /XingNativePack/mfc100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/XingNativePack/mfc100.dll -------------------------------------------------------------------------------- /XingNativePack/msvcp100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/XingNativePack/msvcp100.dll -------------------------------------------------------------------------------- /XingNativePack/msvcr100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stjeong/XingAPI/c23ae870c39aea16567e803b5414fc02eecf6276/XingNativePack/msvcr100.dll -------------------------------------------------------------------------------- /getNugetVersion.ps1: -------------------------------------------------------------------------------- 1 | param([String] $XMLFile) 2 | 3 | [XML]$nugetRoot = Get-Content $XMLfile 4 | 5 | Write-Host $nugetRoot.package.metadata.version -------------------------------------------------------------------------------- /readFile.ps1: -------------------------------------------------------------------------------- 1 | param([String] $filePath) 2 | 3 | 4 | $text = Get-Content $filePath 5 | 6 | Write-Host $text --------------------------------------------------------------------------------