0:00:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 0:00:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 0:00:49 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 0:00:49 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 1:00:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 1:00:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 1:00:45 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 1:00:45 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 2:00:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 2:00:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 2:00:53 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 2:00:53 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 3:00:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 3:00:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 3:00:54 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 3:00:54 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 4:00:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 4:00:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 4:00:46 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 4:00:46 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 5:00:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 5:00:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 5:00:46 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 5:00:46 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 6:00:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 6:00:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 6:00:46 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 6:00:46 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 7:00:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 7:00:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 7:00:46 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 7:00:46 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 8:01:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:01:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:01:18 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 8:01:18 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 8:14:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:14:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:14:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:15:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:15:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:31:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:31:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:32:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:32:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:40:44 22 กุมภาพันธ์ 2561 :There was no endpoint listening at https://rdws.rd.go.th/serviceRD3/vatserviceRD3.asmx that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details. 8:59:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:59:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:59:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:00:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:00:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:00:50 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 9:00:50 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 9:08:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:08:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:08:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:47:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:47:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:55:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:55:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:58:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:58:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:00:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:00:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:00:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:00:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:00:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:00:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:00:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:00:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:00:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:00:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:00:46 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 10:00:46 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 10:02:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:02:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:02:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:06:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:06:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:09:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:09:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:19:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:19:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:20:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:20:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:22:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:22:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:23:38 22 กุมภาพันธ์ 2561 :There was no endpoint listening at https://rdws.rd.go.th/serviceRD3/vatserviceRD3.asmx that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details. 10:28:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:28:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:28:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:29:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:29:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:30:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:30:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:31:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:31:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:31:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:31:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:32:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:32:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:34:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:34:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:37:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:37:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:37:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:37:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:40:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:40:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:51:06 22 กุมภาพันธ์ 2561 :There was no endpoint listening at https://rdws.rd.go.th/serviceRD3/vatserviceRD3.asmx that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details. 10:51:57 22 กุมภาพันธ์ 2561 :Server was unable to process request. ---> Cannot open database "RDtmp" requested by the login. The login failed. 10:52:15 22 กุมภาพันธ์ 2561 :Server was unable to process request. ---> Cannot open database "RDtmp" requested by the login. The login failed. 10:56:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:56:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:56:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:56:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:58:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:58:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:00:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:00:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:01:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:01:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:01:51 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 11:01:51 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 11:05:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:05:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:12:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:12:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:37:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:37:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:48:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:48:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:59:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:59:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:59:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:59:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:59:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:59:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:59:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:59:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:01:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:01:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:01:09 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 12:01:09 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 12:03:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:03:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:26:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:26:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:36:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:36:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:52:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:52:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:01:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:01:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:01:04 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 13:01:04 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 13:22:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:06 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:06 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:25:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:25:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:26:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:26:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:29:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:35:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:35:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:24 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:24 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:14 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 14:01:14 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 14:11:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:11:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:21 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:21 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:22 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:22 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:23 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:26:23 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:26:23 22 กุมภาพันธ์ 2561 :Server was unable to process request. ---> Cannot open database "RDtmp" requested by the login. The login failed. 14:28:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:32:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:32:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:32:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:32:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:32:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:32:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:32:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:32:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:32:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:32:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:32:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:32:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:32:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:32:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:32:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:32:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:32:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:32:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:32:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:32:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:32:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:32:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:32:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:32:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:32:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:32:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:32:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:32:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:32:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:32:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:32:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:32:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:34:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:34:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:36:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:36:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:39:12 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:39:12 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:40:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:40:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:41:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:41:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:43:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:43:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:44:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:44:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:44:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:44:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:44:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:44:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:44:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:44:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:44:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:44:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:44:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:44:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:44:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:44:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:44:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:44:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:44:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:44:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:44:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:44:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:44:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:44:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:44:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:44:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:44:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:44:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:44:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:44:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:44:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:44:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:44:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:44:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:48:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:48:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:28 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:28 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:29 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:29 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:01:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:01:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:01:10 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 15:01:10 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 15:01:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:01:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:14:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:14:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:20:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:20:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:23:24 22 กุมภาพันธ์ 2561 :Server was unable to process request. ---> Cannot open database "RDtmp" requested by the login. The login failed. 15:25:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:25:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:28:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:28:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:31:19 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:31:19 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:32:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:32:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:33:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:33:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:57:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:57:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:57:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:57:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:57:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:57:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:57:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:57:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:57:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:57:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:57:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:57:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:57:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:57:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:57:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:57:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:57:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:57:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:57:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:57:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:57:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:57:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:42 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:42 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:40 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:40 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:01:41 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:41 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:38:53 22 กุมภาพันธ์ 2561 :There was no endpoint listening at https://rdws.rd.go.th/serviceRD3/vatserviceRD3.asmx that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details. 16:40:43 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:40:43 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:42:53 22 กุมภาพันธ์ 2561 :Server was unable to process request. ---> Cannot open database "RDtmp" requested by the login. The login failed. 16:45:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:38 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:38 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:50:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:50:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:52:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:52:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:52:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:52:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:52:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:52:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:52:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:52:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:52:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:52:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:52:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:52:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:52:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:52:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:52:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:52:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:52:59 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:52:59 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:01 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:01 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:02 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:02 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:30 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:30 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:33 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:33 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:34 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:34 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:45 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:45 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:56 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:56 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:57 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:57 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:58:58 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:58:58 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:06:13 22 กุมภาพันธ์ 2561 : INSERT INTO FIN_RC_BANK_RECONCILE ([BR_NO],[BANK_CODE],[BRANCH_CODE],[REF_TRANSFER_SEQ],[TRANSFER_DATE],[TRANSFER_YEAR],[TRANSFER_MONTH],[SUM_AMT],[BAL_AMT],[TRAN_NO],[TRAN_DATE],[IS_DELETE],[CANCLE_BY],[CANCLE_DATE],[REMARK],[ACCOUNT_NUM_FTI],[CODE],[STAFF_ID],[COMP_PERSON_NAME_TH],[REMARK_REPORT],[CR_BY],[CR_DATE],[UPD_BY],[UPD_DATE],[IS_BILL_PAYMENT],[CHEQUE_AMT]) VALUES( @brNo,@bankCode,@branchCode,@seq,@transferDate,@transferYear,@transferMonth,@sumTotal,@balAmt,NULL,NULL,@isDelete,@cancleBy,GETDATE(),@remark,@accountNumFti,@code,@staffId,NULL,@remarkReport,@crBy,GETDATE(),@updBy,GETDATE(),@isBillPayment,@Cheque ); 17:06:13 22 กุมภาพันธ์ 2561 :String or binary data would be truncated. The statement has been terminated. 17:09:01 22 กุมภาพันธ์ 2561 : INSERT INTO FIN_RC_BANK_RECONCILE ([BR_NO],[BANK_CODE],[BRANCH_CODE],[REF_TRANSFER_SEQ],[TRANSFER_DATE],[TRANSFER_YEAR],[TRANSFER_MONTH],[SUM_AMT],[BAL_AMT],[TRAN_NO],[TRAN_DATE],[IS_DELETE],[CANCLE_BY],[CANCLE_DATE],[REMARK],[ACCOUNT_NUM_FTI],[CODE],[STAFF_ID],[COMP_PERSON_NAME_TH],[REMARK_REPORT],[CR_BY],[CR_DATE],[UPD_BY],[UPD_DATE],[IS_BILL_PAYMENT],[CHEQUE_AMT]) VALUES( @brNo,@bankCode,@branchCode,@seq,@transferDate,@transferYear,@transferMonth,@sumTotal,@balAmt,NULL,NULL,@isDelete,@cancleBy,GETDATE(),@remark,@accountNumFti,@code,@staffId,NULL,@remarkReport,@crBy,GETDATE(),@updBy,GETDATE(),@isBillPayment,@Cheque ); 17:09:01 22 กุมภาพันธ์ 2561 :String or binary data would be truncated. The statement has been terminated. 17:16:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:16:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:52:51 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:52:51 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:07:31 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:07:31 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:07:37 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:07:37 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:09:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:09:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:10:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:10:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:10:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:10:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:10:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:10:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:10:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:10:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:10:35 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:10:35 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:11:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:11:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:12:00 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:12:00 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:12:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:12:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:12:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:12:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:12:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:12:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:13:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:13:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:00:46 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:00:46 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:00:46 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 19:00:46 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 20:00:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 20:00:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 20:00:44 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 20:00:44 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 20:28:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 20:28:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:00:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:00:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:00:44 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 21:00:44 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 21:09:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:09:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:19:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:19:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:21:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:21:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:24:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:24:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:27:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:27:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:31:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:31:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:37:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:37:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:38:55 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:38:55 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:43:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:43:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:49:08 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:49:08 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:51:16 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:51:16 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:54:10 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:54:10 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:56:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:56:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:59:48 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:59:48 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 22:00:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 22:00:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 22:00:44 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 22:00:44 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 22:00:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 22:00:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 22:01:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 22:01:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 22:05:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 22:05:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 22:07:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 22:07:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 22:09:53 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 22:09:53 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 22:11:52 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 22:11:52 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 22:14:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 22:14:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 22:16:39 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 22:16:39 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 22:18:47 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 22:18:47 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 22:23:50 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 22:23:50 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 22:27:27 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 22:27:27 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 22:30:04 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 22:30:04 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 22:32:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 22:32:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 22:35:05 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 22:35:05 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 22:51:15 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 22:51:15 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 22:56:17 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 22:56:17 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 23:00:44 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:00:44 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 23:00:44 22 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 23:00:44 22 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 23:05:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:05:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 23:12:09 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:12:09 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 23:15:32 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:15:32 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 23:18:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:18:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 23:21:11 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:21:11 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 23:27:13 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:27:13 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 23:29:25 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:29:25 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 23:34:49 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:34:49 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 23:38:14 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:38:14 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 23:41:54 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:41:54 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 23:44:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:44:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 23:47:03 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:47:03 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 23:48:07 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:48:07 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 23:50:20 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:50:20 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 23:50:36 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:50:36 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 23:54:18 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:54:18 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS 23:57:26 22 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:57:26 22 กุมภาพันธ์ 2561 :try to logon with: GS1WS